Skip to content

Commit

Permalink
Add dependabot automerge
Browse files Browse the repository at this point in the history
  • Loading branch information
romanini-ciandt committed Oct 31, 2024
1 parent f9f9f13 commit d977b1f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/dependabot-automation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: Dependabot automation

on: # yamllint disable-line rule:truthy
pull_request:
types:
- opened
- synchronize

permissions:
contents: write
pull-requests: write

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

0 comments on commit d977b1f

Please sign in to comment.