Skip to content

Commit

Permalink
Create auto-merge.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mre committed Jan 5, 2023
1 parent db58122 commit 1793b0f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: 'Merge Dependencies'

on:
pull_request:

jobs:
auto-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v2
- uses: ahmadnassri/action-dependabot-auto-merge@v2.6.6
with:
github-token: ${{ secrets.AUTOMERGE_TOKEN }}
# Merge all updates as long as they pass CI.
# Includes minor and patch updates.
update_type: "semver:major"

0 comments on commit 1793b0f

Please sign in to comment.