Skip to content

Bump actions/github-script from 6.4.1 to 7.0.0 #15

Bump actions/github-script from 6.4.1 to 7.0.0

Bump actions/github-script from 6.4.1 to 7.0.0 #15

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'
})