Skip to content

Commit

Permalink
remove optional github token (#674)
Browse files Browse the repository at this point in the history
* chore: removed optional github token

* fix: restored deleted field
  • Loading branch information
marco-ippolito authored Sep 9, 2022
1 parent e469a84 commit bcc56b8
Showing 1 changed file with 5 additions and 9 deletions.
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

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

0 comments on commit bcc56b8

Please sign in to comment.