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 984bb7c commit 2a6d7a7Copy full SHA for 2a6d7a7
.github/workflows/node.js.yml
@@ -33,3 +33,17 @@ jobs:
33
run: npm run build
34
- name: Run tests
35
run: npm run test
36
+ automerge:
37
+ if: >
38
+ github.event_name == 'pull_request' && github.event.pull_request.user.login == 'dependabot[bot]'
39
+ needs:
40
+ - test
41
+ runs-on: ubuntu-latest
42
+ permissions:
43
+ contents: write
44
+ pull-requests: write
45
+ steps:
46
+ - name: Merge Dependabot PR
47
+ uses: fastify/github-action-merge-dependabot@c3bde0759d4f24db16f7b250b2122bc2df57e817 # v3.11.0
48
+ with:
49
+ github-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments