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 40520c9 commit ee1726fCopy full SHA for ee1726f
.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
@@ -21,4 +21,13 @@ jobs:
21
- name: Install Dependencies
22
run: npm install --ignore-scripts
23
- name: Test
24
- run: npm test
+ run: npm test
25
26
+ automerge:
27
+ needs: test
28
+ runs-on: ubuntu-latest
29
+ steps:
30
+ - uses: fastify/github-action-merge-dependabot@v1
31
+ if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request' }}
32
+ with:
33
+ github-token: ${{secrets.github_token}}
0 commit comments