Skip to content

Commit

Permalink
Add auto-merge for dependabot PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
damyan committed Nov 16, 2023
1 parent 15caedc commit 946d21d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/auto-merge.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Dependabot auto-approve
on: pull_request_target

permissions:
pull-requests: write
contents: write

jobs:
dependabot:
runs-on: self-hosted
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v1
- uses: actions/checkout@v4
- name: Setup gh cli
uses: ksivamuthu/actions-setup-gh-cli@v2
- name: Approve a Dependabot PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 comments on commit 946d21d

Please sign in to comment.