We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb18252 commit 8187671Copy full SHA for 8187671
src/index.ts
@@ -54,6 +54,9 @@ async function main() {
54
if (config.triageColumnName) {
55
info(`Moving issue ${issue.number} to triage column`);
56
await issue.moveToColumn(config.triageColumnName);
57
+ } else if (config.workingColumnName) {
58
+ info(`Moving issue ${issue.number} to working column`);
59
+ await issue.moveToColumn(config.workingColumnName);
60
}
61
62
break;
0 commit comments