Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove optional github token #674

Merged
merged 2 commits into from
Sep 9, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
name: ci

on:
push:
branches: [master]
branches:
- master
pull_request:
branches: [master]

branches:
- master
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
node-version-file: .nvmrc
- run: yarn
- run: yarn lint
- run: yarn typecheck
- run: yarn test

automerge:
needs: build
runs-on: ubuntu-latest
Expand All @@ -29,9 +27,7 @@ jobs:
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
approve-only: true
marco-ippolito marked this conversation as resolved.
Show resolved Hide resolved

deploy-expo-preview:
needs: build
if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]'
Expand Down