Skip to content

Commit

Permalink
Set Dependabot version bumps to auto-merge
Browse files Browse the repository at this point in the history
This will still require approvals, but will save two additional clicks
to get the bumps merged.

Signed-off-by: Tom Wieczorek <[email protected]>
  • Loading branch information
twz123 committed Jan 9, 2024
1 parent 54912bf commit 51828b9
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/dependabot-prs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Dependabot PRs
on: pull_request

permissions:
contents: write
pull-requests: write

jobs:
auto-merge:
name: Auto-merge version updates
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest

steps:
- name: Fetch Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

- name: Enable auto-merge
if: contains(fromJSON('["version-update:semver-minor", "version-update:semver-patch"]'), steps.metadata.outputs.update-type)
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_URL: ${{ github.event.pull_request.html_url }}
run: gh pr merge --auto --merge -- "$PR_URL"

0 comments on commit 51828b9

Please sign in to comment.