Skip to content

Commit 1fbe8bd

Browse files
committed
tools: add workflow to add label when there are 2+ approvals
Signed-off-by: Antoine du Hamel <duhamelantoine1995@gmail.com> PR-URL: nodejs/node#60554
1 parent 8410a91 commit 1fbe8bd

2 files changed

Lines changed: 47 additions & 2 deletions

File tree

.github/workflows/label-pr.yml

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,42 @@ name: Label PRs
33
on:
44
pull_request_target:
55
types: [opened]
6+
workflow_run:
7+
workflows: [PR Reviewed]
8+
types: [completed]
69

7-
permissions:
8-
contents: read
10+
permissions: {}
911

1012
jobs:
1113
label:
1214
runs-on: ubuntu-slim
15+
if: github.event_name != 'workflow_run'
1316

1417
steps:
1518
- uses: nodejs/node-pr-labeler@d4cf1b8b9f23189c37917000e5e17e796c770a6b # v1
1619
with:
1720
repo-token: ${{ secrets.GH_USER_TOKEN }}
1821
configuration-path: .github/label-pr-config.yml
22+
23+
count_approvals:
24+
runs-on: ubuntu-latest
25+
if: github.event_name == 'workflow_run'
26+
permissions:
27+
issues: write
28+
steps:
29+
- name: 'Add/remove "Approvals: 2+" label'
30+
run: |
31+
set -x
32+
PR_DATA=$(gh pr view "$PR_URL" --json reviewDecision,reviews,labels --jq 'if .reviewDecision != "APPROVED" then .reviewDecision | halt_error end' || true)
33+
34+
[ -n "$PR_DATA" ] && {
35+
TEAM_NAME=$(echo "$PR_DATA" | jq -r 'if (.labels | any(.name == "semver-major")) then "tsc" else "collaborators" end')
36+
TEAM_MEMBERS=$(gh api "orgs/nodejs/teams/$TEAM_NAME/members" --paginate --jq 'map(.login)')
37+
38+
echo "$PR_DATA" | jq --argjson team "$TEAM_MEMBERS" -r '.reviews | map(select(.state == "APPROVED" and (.author.login as $login | $team | any(. == $login)))) | if length < 2 then halt_error end' \
39+
&& gh pr edit "$PR_URL" --add-label 'Approvals: 2+'
40+
} \
41+
|| gh pr edit "$PR_URL" --remove-label 'Approvals: 2+'
42+
env:
43+
GH_TOKEN: ${{ github.token }}
44+
PR_URL: ${{ github.event.pull_request.html_url }}

.github/workflows/pr-revieweed.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: PR Reviewed
2+
3+
on:
4+
pull_request_review:
5+
types: [submitted, dismissed]
6+
7+
permissions: {}
8+
9+
jobs:
10+
store-pr-number:
11+
runs-on: ubuntu-slim
12+
steps:
13+
- name: Store PR number
14+
run: echo "${{ github.event.pull_request.number }}" > pr_number.txt
15+
- name: Upload PR number
16+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
17+
with:
18+
name: pr-number
19+
path: pr_number.txt

0 commit comments

Comments
 (0)