Skip to content

Commit 8a8a20f

Browse files
feat: add support for dependabot 🥳 (#1370)
1 parent 615f617 commit 8a8a20f

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
open-pull-requests-limit: 10
8+
9+
- package-ecosystem: "npm"
10+
directory: "/"
11+
schedule:
12+
interval: "weekly"
13+
open-pull-requests-limit: 10

.github/workflows/nodejs.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,13 @@ jobs:
1717
post-test-steps: |
1818
- name: Coverage Report
1919
uses: codecov/codecov-action@v2
20+
automerge:
21+
needs: build
22+
runs-on: ubuntu-latest
23+
permissions:
24+
pull-requests: write
25+
contents: write
26+
steps:
27+
- uses: fastify/github-action-merge-dependabot@v3
28+
with:
29+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)