Merge #541
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: "Merge" | |
on: | |
workflow_dispatch: | |
workflow_run: | |
types: | |
- "completed" | |
workflows: | |
- "Builds" | |
jobs: | |
merge: | |
name: "Merge" | |
runs-on: "ubuntu-latest" | |
if: > | |
github.event.workflow_run.event == 'pull_request' && | |
github.event.workflow_run.conclusion == 'success' | |
steps: | |
- name: "Request review from @loophp-bot" | |
uses: "actions/github-script@v7" | |
with: | |
github-token: "${{ secrets.BOT_TOKEN }}" | |
script: | | |
const pullRequest = context.payload.workflow_run.pull_requests[0] | |
const repository = context.repo | |
const reviewers = [ | |
"loophp-bot", | |
] | |
await github.rest.pulls.requestReviewers({ | |
owner: repository.owner, | |
repo: repository.repo, | |
pull_number: pullRequest.number, | |
reviewers: reviewers, | |
}) | |
- name: "Assign @loophp-bot" | |
uses: "actions/github-script@v7" | |
with: | |
github-token: "${{ secrets.BOT_TOKEN }}" | |
script: | | |
const pullRequest = context.payload.workflow_run.pull_requests[0] | |
const repository = context.repo | |
const assignees = [ | |
"loophp-bot", | |
] | |
await github.rest.issues.addAssignees({ | |
owner: repository.owner, | |
repo: repository.repo, | |
assignees: assignees, | |
issue_number: pullRequest.number | |
}) | |
- name: "Approve pull request" | |
uses: "actions/github-script@v7" | |
with: | |
github-token: "${{ secrets.BOT_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.BOT_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, | |
}) |