Skip to content

Bump actions/checkout from 4.2.1 to 4.2.2 #27

Bump actions/checkout from 4.2.1 to 4.2.2

Bump actions/checkout from 4.2.1 to 4.2.2 #27

Workflow file for this run

name: "Dependabot Automerge"
on:
pull_request:
branches: [ master ]
permissions: write-all
jobs:
automerge:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: automerge
uses: actions/[email protected]
with:
script: |
github.rest.pulls.merge({
owner: context.payload.repository.owner.login,
repo: context.payload.repository.name,
pull_number: context.payload.pull_request.number,
sha: context.payload.pull_request.head.sha,
merge_method: 'merge'
})