We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17cc12f commit 284bba5Copy full SHA for 284bba5
.github/workflows/auto-update-labels.yml
@@ -20,12 +20,16 @@ jobs:
20
21
let newLabel = null;
22
23
- if (comment.includes("approved")) {
+ 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")) {
30
newLabel = "approved";
31
} else if (comment.includes("rejected")) {
32
newLabel = "rejected";
- } else if (comment.includes("needs more info")) {
- newLabel = "needs-more-info";
33
}
34
35
if (newLabel) {
0 commit comments