From 0a98b3161fad613198f23bcc1f9a1169eda34eb9 Mon Sep 17 00:00:00 2001 From: kik-kik Date: Fri, 1 Mar 2024 12:21:08 +0100 Subject: [PATCH] add Github Actions Worflow to automerge dependabot PRs --- .github/workflows/dependabotautomerge.yml | 52 +++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .github/workflows/dependabotautomerge.yml diff --git a/.github/workflows/dependabotautomerge.yml b/.github/workflows/dependabotautomerge.yml new file mode 100644 index 00000000000..476e4cb0da7 --- /dev/null +++ b/.github/workflows/dependabotautomerge.yml @@ -0,0 +1,52 @@ +# 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: + 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, + })