Skip to content

Commit f121986

Browse files
committed
Add configuration to merge updates automatically
Since we have a CI and we are dealing with a static website (and no one seems to review the PR anyway besides me), it can safely be merged, avoiding me 3 clicks on github every day. Signed-off-by: Michael Scherer <[email protected]>
1 parent 3505d83 commit f121986

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)