Skip to content

Commit

Permalink
Add auto-merge workflow for dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Dec 6, 2023
1 parent 4e81a23 commit e76954f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: "Auto Merge Dependabot"

on:
pull_request_target:

jobs:
auto-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v2
- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
github-token: ${{ secrets.AUTOMERGE_PUSH_TOKEN }}
target: minor

0 comments on commit e76954f

Please sign in to comment.