Skip to content

Commit

Permalink
Merge pull request #334 from mscherer/add_automerge
Browse files Browse the repository at this point in the history
Add configuration to merge updates automatically
  • Loading branch information
mscherer authored Feb 3, 2025
2 parents cc45718 + f121986 commit 28f4513
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/dependabot_automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Auto-merge Dependabot
on: pull_request

permissions:
pull-requests: write
contents: write

jobs:
automerge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: peter-evans/enable-pull-request-automerge@v3
with:
pull-request-number: ${{ github.event.pull_request.number }}
merge-method: rebase

0 comments on commit 28f4513

Please sign in to comment.