From d55f0f7dbee03a783920b35322d51e598655f002 Mon Sep 17 00:00:00 2001 From: Marco Ippolito Date: Fri, 9 Sep 2022 15:07:29 +0200 Subject: [PATCH] remove optional github token (#265) * chore: removed optional github token * removed optional null * removed unused if --- .github/workflows/ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 98a6af7..3d302ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,18 +1,15 @@ name: CI - -on: +on: pull_request: push: branches: - master - jobs: build: uses: pkgjs/action/.github/workflows/node-test.yaml@v0 with: strategy-fail-fast: true test-command: npm run test:ci - automerge: needs: build runs-on: ubuntu-latest @@ -21,6 +18,3 @@ jobs: contents: write steps: - uses: fastify/github-action-merge-dependabot@v3 - if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request' }} - with: - github-token: ${{ secrets.GITHUB_TOKEN }}