Skip to content

feat: initial auto-merge set-up for dependabot #1

feat: initial auto-merge set-up for dependabot

feat: initial auto-merge set-up for dependabot #1

name: Dependabot auto-merge

Check failure on line 1 in .github/workflows/dependabot-auto-merge.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dependabot-auto-merge.yml

Invalid workflow file

`pull-request` is not a valid event name
on: pull-request
permissions:
contents: read
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
if: contains(steps.metadata.outputs.dependency-names, 'my-dependency') && steps.metadata.outputs.update-type == 'version-update:semver-patch'
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}