Skip to content

Commit aac7b94

Browse files
committed
Add Dependabot Auto Manage workflow
Signed-off-by: Mathias L. Baumann <[email protected]>
1 parent 2d0afe9 commit aac7b94

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Dependabot Auto Manage
2+
on:
3+
pull_request_target:
4+
types: [opened, synchronize, reopened]
5+
6+
permissions:
7+
contents: write
8+
pull-requests: write
9+
10+
jobs:
11+
dependabot:
12+
runs-on: ubuntu-latest
13+
if: github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'app/dependabot'
14+
steps:
15+
- uses: ad/dependabot-auto-approve@v1
16+
with:
17+
dependency-type: 'all'
18+
auto-merge: 'true'
19+
merge-method: 'merge'
20+
add-label: 'auto-merged'

0 commit comments

Comments
 (0)