Skip to content

Commit d806213

Browse files
authored
Add Dependabot auto-merge workflow (#95)
Adds automatic approval and merging of Dependabot PRs using the frequenz-floss/[email protected] action.
2 parents b4cc7cd + dbbcc81 commit d806213

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Auto-approve Dependabot PRs
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
auto-approve:
8+
runs-on: ubuntu-latest
9+
if: github.actor == 'dependabot[bot]'
10+
steps:
11+
- name: Auto-approve and merge Dependabot PRs
12+
uses: frequenz-floss/[email protected]
13+
with:
14+
github-token: ${{ secrets.GITHUB_TOKEN }}
15+
merge-method: merge

0 commit comments

Comments
 (0)