Skip to content

Commit

Permalink
feat: Add workflow to auto-merge Prs.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryohidaka committed Oct 6, 2023
1 parent 8656218 commit 0bc92fd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/auto-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- match:
dependency_type: all
update_type: "semver:minor" # includes patch updates!
13 changes: 13 additions & 0 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: auto-merge

on:
pull_request:

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

0 comments on commit 0bc92fd

Please sign in to comment.