Bump actions-runner-controller from dcb64f0
to c8216e1
#68
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Dependabot Automerge - Action" | |
on: | |
pull_request_target: | |
branches: [ main ] | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
worker: | |
runs-on: ubuntu-latest | |
if: github.actor == 'dependabot[bot]' | |
steps: | |
- name: automerge | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
github.rest.pulls.merge({ | |
owner: context.payload.repository.owner.login, | |
repo: context.payload.repository.name, | |
pull_number: context.payload.pull_request.number | |
}) |