File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed
Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,14 @@ updates:
1414 prefix : ' chore(deps)'
1515 labels :
1616 - ' dependencies'
17+ - ' dependabot'
18+ groups :
19+ npm-dependencies :
20+ patterns :
21+ - " *"
22+ update-types :
23+ - " minor"
24+ - " patch"
1725
1826 # Docker
1927 - package-ecosystem : ' docker'
@@ -22,9 +30,20 @@ updates:
2230 interval : ' weekly'
2331 commit-message :
2432 prefix : ' chore(deps)'
33+ labels :
34+ - ' dependencies'
35+ - ' dependabot'
36+ groups :
37+ docker-dependencies :
38+ patterns :
39+ - " *"
40+ update-types :
41+ - " minor"
42+ - " patch"
2543 ignore :
2644 - dependency-name : ' node'
2745 versions : ['>=21']
46+
2847 # github-actions
2948 - package-ecosystem : ' github-actions'
3049 directory : ' /'
@@ -34,3 +53,11 @@ updates:
3453 prefix : ' chore(deps)'
3554 labels :
3655 - ' dependencies'
56+ - ' dependabot'
57+ groups :
58+ github-actions-dependencies :
59+ patterns :
60+ - " *"
61+ update-types :
62+ - " minor"
63+ - " patch"
Original file line number Diff line number Diff line change 1+ name : Dependabot Auto Approve
2+
3+ on :
4+ pull_request :
5+ types : [opened, synchronize, reopened]
6+
7+ permissions :
8+ contents : read
9+ pull-requests : write
10+
11+ jobs :
12+ auto-approve :
13+ runs-on : ubuntu-latest
14+ if : github.actor == 'dependabot[bot]'
15+ steps :
16+ - name : Auto approve dependabot PRs
17+ uses : hmarr/auto-approve-action@v4
18+ with :
19+ github-token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments