Skip to content

Commit 0e01bb2

Browse files
authored
Update status handling for Bug and New Device labels
1 parent a5d2b99 commit 0e01bb2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/auto-assign.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ jobs:
116116
};
117117
118118
let statusValue = "To triage"; // default
119-
if (labels.includes("Bug")) statusValue = "Pending";
119+
if (labels.includes("Bug")) statusValue = "To triage";
120120
else if (labels.includes("Feature Request")) statusValue = "To triage";
121-
else if (labels.includes("New Device")) statusValue = "Ready";
121+
else if (labels.includes("New Device")) statusValue = "To triage";
122122
123123
console.log(`Setting Status to ${statusValue} (ID: ${statusOptions[statusValue]})`);
124124
await github.graphql(`

0 commit comments

Comments
 (0)