Skip to content

PMM-7 Fix release-doc workflow #12785

PMM-7 Fix release-doc workflow

PMM-7 Fix release-doc workflow #12785

Workflow file for this run

name: Dependabot
on: pull_request
permissions:
contents: read
jobs:
dependabot:
name: Enable auto-merge
runs-on: ubuntu-22.04
if: ${{ github.actor == 'dependabot[bot]' }}
permissions:
contents: write
pull-requests: write
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@21025c705c08248db411dc16f3619e6b5f9ea21a # v2.5.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}