Skip to content

Enable automerge for pre-commit and dependabot. #1

Enable automerge for pre-commit and dependabot.

Enable automerge for pre-commit and dependabot. #1

Workflow file for this run

name: Dependabot and Pre-commit auto-merge
on:
pull_request:
permissions:
contents: write
jobs:
auto-merge:
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'pre-commit-ci[bot]' }}
steps:
- name: Enable auto-merge for Dependabot and pre-commit-ci PRs
run: |
gh pr review --approve "$PR_URL"
gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}