Skip to content

Auto Merge Approved PRs #24

Auto Merge Approved PRs

Auto Merge Approved PRs #24

Workflow file for this run

name: 'Auto Merge Approved PRs'
on:
pull_request_review:
types: [ submitted ]
jobs:
auto_merge:
runs-on: ubuntu-latest
steps:
- name: 'Get Pull Request'
id: pr
uses: actions/github-script@v6
with:
result-encoding: string
script: |
const { data: pr } = await github.rest.pulls.get({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.payload.pull_request.number,
});
return JSON.stringify(pr);
- name: 'Check Approvals and Labels'
id: check
uses: actions/github-script@v6
with:
script: |
const pr = JSON.parse(steps.pr.outputs.result);
const reviews = await github.rest.pulls.listReviews({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: pr.number,
});
const approvals = reviews.data.filter(review => review.state === 'APPROVED');
const hasLabel = pr.labels.some(label => label.name === 'ํ™•์ธ ์š”์ฒญ');
// ๋ฉ”์ธ ๋ธŒ๋žœ์น˜๋กœ ํ–ฅํ•˜๋Š” PR์ธ ๊ฒฝ์šฐ ๋ฆฌ๋ทฐ์–ด 3๋ช…, ๋‹ค๋ฅธ ๋ธŒ๋žœ์น˜์ธ ๊ฒฝ์šฐ 2๋ช… ํ•„์š”
const requiredApprovals = pr.base.ref === 'main' ? 3 : 2;
return approvals.length >= requiredApprovals && hasLabel;
- name: 'Change Label to ์ž‘์—… ์™„๋ฃŒ'
if: steps.check.outputs.result == 'true'
uses: actions-ecosystem/action-add-labels@v1
with:
labels: '์ž‘์—… ์™„๋ฃŒ'
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: 'Remove Label ํ™•์ธ ์š”์ฒญ'
if: steps.check.outputs.result == 'true'
uses: actions-ecosystem/action-remove-labels@v1
with:
labels: 'ํ™•์ธ ์š”์ฒญ'
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: 'Merge PR'
if: steps.check.outputs.result == 'true'
uses: actions/github-script@v6
with:
script: |
await github.rest.pulls.merge({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.payload.pull_request.number,
merge_method: 'merge', # 'squash' ๋˜๋Š” 'rebase'๋กœ๋„ ์„ค์ • ๊ฐ€๋Šฅ
commit_title: `์ž๋™ ๋จธ์ง€: PR #${context.payload.pull_request.number}`
});