Skip to content

Commit

Permalink
CI: Add workflow to auto-merge dependabot PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
dopplershift committed Jul 10, 2024
1 parent a31e775 commit 0e8c1c4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/automerge-dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Auto-merge Dependabot PRs

on:
pull_request_target:

jobs:
#
# Automatically review dependabot PRs and set them to automerge (on successful checks)
#
Automerge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'

permissions:
pull-requests: write

steps:
- name: Set auto-merge
run: gh pr merge -R ${{ github.repository }} --merge --auto ${{ github.event.pull_request.number }}
- name: Review PR
run: gh pr review -R ${{ github.repository }} ${{ github.event.pull_request.number }}

0 comments on commit 0e8c1c4

Please sign in to comment.