feat(KB-274): complete Step 2 — update executor to treat archived as satisfied dependency

This commit is contained in:
gsxdsm
2026-03-31 07:02:54 -07:00
parent 427b92aeb9
commit 04260c8822

View File

@@ -335,7 +335,7 @@ export class TaskExecutor {
const allTasks = await this.store.listTasks();
const unmetDeps = task.dependencies.filter((depId) => {
const dep = allTasks.find((t) => t.id === depId);
return dep && dep.column !== "done" && dep.column !== "in-review";
return dep && dep.column !== "done" && dep.column !== "in-review" && dep.column !== "archived";
});
if (unmetDeps.length > 0) {