Skip to content

Bump the asciidoctor group with 4 updates #105

Bump the asciidoctor group with 4 updates

Bump the asciidoctor group with 4 updates #105

Workflow file for this run

name: Auto Merge
on: pull_request_target
permissions:
pull-requests: write
contents: write
jobs:
enable-auto-merge:
runs-on: ubuntu-latest
if: ${{ github.repository == 'mraible/infoq-mini-book' && github.event.pull_request.user.login == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v1.6.0
- name: Enable auto-merge for Dependabot PRs
if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}