Skip to content

Commit

Permalink
Add dependabot auto-merge common workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dopey committed Oct 3, 2023
1 parent a31172b commit 84a2a31
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/dependabot-auto-merge.yml
@@ -0,0 +1,28 @@
name: Dependabot auto-merge

on:
workflow_call:
secrets:
GITHUB_TOKEN:
required: true

permissions:
contents: write
pull-requests: write

jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 84a2a31

Please sign in to comment.