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 c530527 commit 63554c2Copy full SHA for 63554c2
.dependabot/config.yml
.github/dependabot.yml
@@ -0,0 +1,8 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: npm
4
+ directory: '/'
5
+ schedule:
6
+ interval: daily
7
+ open-pull-requests-limit: 10
8
+
.github/workflows/ci.yml
@@ -16,3 +16,12 @@ jobs:
16
run: npm install --ignore-scripts
17
- name: Test
18
run: npm run test
19
20
+ automerge:
21
+ needs: test
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - uses: fastify/github-action-merge-dependabot@v1
25
+ if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request' }}
26
+ with:
27
+ github-token: ${{secrets.github_token}}
0 commit comments