Skip to content

fix: add dependabot PAT secret #29

fix: add dependabot PAT secret

fix: add dependabot PAT secret #29

name: Dependabot auto-merge
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
paths:
- '.github/workflows/ci.yml'
- '.github/workflows/dependabot-auto-merge.yml'
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.DEPENDABOT_PAT_SECRET }}"
- name: Enable auto-merge for Dependabot PRs
if: 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.DEPENDABOT_PAT_SECRET }}