We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e34daa3 commit d6756acCopy full SHA for d6756ac
.github/workflows/nodejs.yml
@@ -34,3 +34,17 @@ jobs:
34
run: npm run lint
35
- name: Run tests
36
run: npm run test
37
+ automerge:
38
+ if: >
39
+ github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]'
40
+ needs:
41
+ - test
42
+ runs-on: ubuntu-latest
43
+ permissions:
44
+ contents: write
45
+ pull-requests: write
46
+ steps:
47
+ - name: Merge Dependabot PR
48
+ uses: fastify/github-action-merge-dependabot@e820d631adb1d8ab16c3b93e5afe713450884a4a # v3.11.1
49
+ with:
50
+ github-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments