Skip to content

Bump ansible-core from 2.19.5 to 2.19.11rc1 #9

Bump ansible-core from 2.19.5 to 2.19.11rc1

Bump ansible-core from 2.19.5 to 2.19.11rc1 #9

name: "Dependabot auto-merge"
on:
pull_request:
permissions:
contents: "write"
pull-requests: "write"
jobs:
dependabot:
runs-on: "ubuntu-latest"
if: "github.event.pull_request.user.login == 'dependabot[bot]'"
steps:
- name: "Fetch Dependabot metadata"
id: "metadata"
uses: "dependabot/fetch-metadata@v2"
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: "Approve Dependabot PR"
if: "steps.metadata.outputs.update-type == 'version-update:semver-patch'"
run: "gh pr review --approve \"$PR_URL\""
env:
PR_URL: "${{ github.event.pull_request.html_url }}"
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: "Enable auto-merge"
if: "steps.metadata.outputs.update-type == 'version-update:semver-patch'"
run: "gh pr merge --auto --squash \"$PR_URL\""
env:
PR_URL: "${{ github.event.pull_request.html_url }}"
GH_TOKEN: "${{ secrets.GITHUB_TOKEN }}"