Skip to content

Bump actions/checkout from 4.4.0 to 7.0.1 #2

Bump actions/checkout from 4.4.0 to 7.0.1

Bump actions/checkout from 4.4.0 to 7.0.1 #2

Workflow file for this run

name: Dependabot
# Dependabot's minor and patch action updates are grouped in dependabot.yml.
# Once the required CI check passes, this marks only those low-risk updates for
# squash merge. Major updates never satisfy the condition and remain manual.
on:
pull_request:
permissions:
contents: write
pull-requests: write
jobs:
auto-merge:
if: github.event.pull_request.user.login == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- name: Read Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@25dd0e34f4fe68f24cc83900b1fe3fe149efef98 # v3.1.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge for minor and patch updates
if: >-
steps.metadata.outputs.update-type == 'version-update:semver-minor' ||
steps.metadata.outputs.update-type == 'version-update:semver-patch'
run: gh pr merge --auto --squash "$PR_URL"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_URL: ${{ github.event.pull_request.html_url }}