Skip to content

Commit

Permalink
ci(actions): Add workflow to auto-merge dependabot PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
Holzhaus committed Oct 21, 2024
1 parent 919c757 commit 254d1b0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/dependabot-auto-merge.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Auto-merge Dependabot PR

on:
pull_request:

jobs:
auto-merge:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
target: major
github-token: ${{ secrets.mytoken }}

0 comments on commit 254d1b0

Please sign in to comment.