Skip to content

Commit 284bba5

Browse files
Update auto-update-labels.yml
1 parent 17cc12f commit 284bba5

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/auto-update-labels.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,16 @@ jobs:
2020
2121
let newLabel = null;
2222
23-
if (comment.includes("approved")) {
23+
if (comment.includes("initial review complete")) {
24+
newLabel = "under-initial-review";
25+
} else if (comment.includes("scheduled for interview")) {
26+
newLabel = "one-on-one-review";
27+
} else if (comment.includes("ranking complete")) {
28+
newLabel = "ranking-in-progress";
29+
} else if (comment.includes("approved")) {
2430
newLabel = "approved";
2531
} else if (comment.includes("rejected")) {
2632
newLabel = "rejected";
27-
} else if (comment.includes("needs more info")) {
28-
newLabel = "needs-more-info";
2933
}
3034
3135
if (newLabel) {

0 commit comments

Comments
 (0)