Skip to content

Commit 28f4513

Browse files
authored
Merge pull request #334 from mscherer/add_automerge
Add configuration to merge updates automatically
2 parents cc45718 + f121986 commit 28f4513

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Auto-merge Dependabot
2+
on: pull_request
3+
4+
permissions:
5+
pull-requests: write
6+
contents: write
7+
8+
jobs:
9+
automerge:
10+
runs-on: ubuntu-latest
11+
if: github.actor == 'dependabot[bot]'
12+
steps:
13+
- uses: peter-evans/enable-pull-request-automerge@v3
14+
with:
15+
pull-request-number: ${{ github.event.pull_request.number }}
16+
merge-method: rebase

0 commit comments

Comments
 (0)