Skip to content

Commit 46fdc4a

Browse files
committed
Add auto-approve and auto-merge for Dependabot PRs
Signed-off-by: Mathias L. Baumann <[email protected]>
1 parent 49e2bb6 commit 46fdc4a

File tree

1 file changed

+17
-0
lines changed

1 file changed

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

0 commit comments

Comments
 (0)