Skip to content

chore: automatic repo-ansible run #0000 #11

chore: automatic repo-ansible run #0000

chore: automatic repo-ansible run #0000 #11

name: Auto-merge Dependabot PRs
on: pull_request_target
permissions:
pull-requests: write # required for the action to read metadata
contents: write # required for the gh client to read/merge commits
jobs:
run:
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
- name: Enable auto-merge for Dependabot PRs
if: steps.metadata.outputs.update-type == 'version-update:semver-minor' || steps.metadata.outputs.update-type == 'version-update:semver-patch'
run: gh pr merge --merge "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ github.token }}