@kody-ade/kody-engine-lite 0.1.38 → 0.1.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/cli.js +2 -1
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -1633,6 +1633,7 @@ function applyPreStageLabel(ctx, def) {
|
|
|
1633
1633
|
function checkQuestionsAfterStage(ctx, def, state) {
|
|
1634
1634
|
if (def.name !== "taskify" && def.name !== "plan") return null;
|
|
1635
1635
|
if (ctx.input.dryRun) return null;
|
|
1636
|
+
if (ctx.input.mode === "rerun") return null;
|
|
1636
1637
|
const paused = checkForQuestions(ctx, def.name);
|
|
1637
1638
|
if (!paused) return null;
|
|
1638
1639
|
state.state = "failed";
|
|
@@ -2574,7 +2575,7 @@ function resolveForIssue(issueNumber, projectDir) {
|
|
|
2574
2575
|
return { action: "already-completed", taskId: `${issueNumber}-unknown` };
|
|
2575
2576
|
}
|
|
2576
2577
|
if (labels.includes("kody:waiting")) {
|
|
2577
|
-
return { action: "resume", taskId: `${issueNumber}-${generateTaskId()}`, fromStage: "
|
|
2578
|
+
return { action: "resume", taskId: `${issueNumber}-${generateTaskId()}`, fromStage: "taskify" };
|
|
2578
2579
|
}
|
|
2579
2580
|
} catch {
|
|
2580
2581
|
}
|