Skip to content

Commit 8187671

Browse files
committed
fix: auto-add to working column when no triage col
resolves #3
1 parent fb18252 commit 8187671

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@ async function main() {
5454
if (config.triageColumnName) {
5555
info(`Moving issue ${issue.number} to triage column`);
5656
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);
5760
}
5861
}
5962
break;

0 commit comments

Comments
 (0)