Skip to content

Commit

Permalink
Merge pull request #56 from phpolar/auto-merge-dependabot-prs
Browse files Browse the repository at this point in the history
ci: add dependabot auto merging
  • Loading branch information
ericfortmeyer committed Aug 14, 2023
2 parents 82755dd + bfe9bf5 commit 5818f87
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/auto-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
- match:
dependency_type: development
update_type: semver:minor # includes patch updates!

- match:
dependency_type: production
update_type: security:minor # includes patch updates!

- match:
dependency_type: production
update_type: semver:patch
14 changes: 14 additions & 0 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
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:
target: minor
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5818f87

Please sign in to comment.