Skip to content

add Github Actions Worflow to automerge dependabot PRs #1

add Github Actions Worflow to automerge dependabot PRs

add Github Actions Worflow to automerge dependabot PRs #1

# source: https://localheinz.com/articles/2020/06/15/merging-pull-requests-with-github-actions/
name: "Merge - Dependabot PR"
on:
pull_request:
branches:
- 'dependabot/**'
check_run:
types: [completed]
jobs:
merge:

Check failure on line 13 in .github/workflows/dependabotautomerge.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dependabotautomerge.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
name: "Merge"
runs-on: "ubuntu-latest"
if: >
github.event.workflow_run.event == 'pull_request' &&
github.event.workflow_run.conclusion == 'success' &&
github.actor == 'dependabot[bot]'
# steps:
# - name: "Approve pull request"
# uses: "actions/github-script@v7"
# with:
# github-token: "${{ secrets.GITHUB_TOKEN }}"
# script: |
# const pullRequest = context.payload.workflow_run.pull_requests[0]
# const repository = context.repo
# await github.rest.pulls.createReview({
# event: "APPROVE",
# owner: repository.owner,
# repo: repository.repo,
# pull_number: pullRequest.number,
# })
- name: "Merge pull request"
uses: "actions/github-script@v7"
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
script: |
const pullRequest = context.payload.workflow_run.pull_requests[0]
const repository = context.repo
await github.rest.pulls.merge({
merge_method: "merge",
owner: repository.owner,
pull_number: pullRequest.number,
repo: repository.repo,
})