Skip to content

Commit

Permalink
chore: add auto merge action
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmcdowall committed Oct 29, 2023
1 parent e710b01 commit bb934c0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/dependency_auto_merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Request dependabot merge
on:
pull_request_target:
branches:
- main
jobs:
auto-merge:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot merge trigger
run: gh pr comment --body "@dependabot merge (if checks succeed)" "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.AUTO_MERGE }}

0 comments on commit bb934c0

Please sign in to comment.