taskplane 0.5.10 → 0.5.11
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.
|
@@ -327,8 +327,24 @@ export function executeIntegration(
|
|
|
327
327
|
const { orchBranch, currentBranch, batchId } = context;
|
|
328
328
|
|
|
329
329
|
if (mode === "ff") {
|
|
330
|
-
// Fast-forward merge
|
|
330
|
+
// Fast-forward merge.
|
|
331
|
+
// Stash any dirty working tree files first — workspace mode leaves
|
|
332
|
+
// STATUS.md modifications in the working tree for dashboard visibility.
|
|
333
|
+
// These would block ff if the orch branch has different versions.
|
|
334
|
+
let stashed = false;
|
|
335
|
+
const statusCheck = deps.runGit(["status", "--porcelain"]);
|
|
336
|
+
if (statusCheck.ok && statusCheck.stdout.trim()) {
|
|
337
|
+
deps.runGit(["stash", "push", "--include-untracked", "-m", `orch-integrate-autostash-${batchId}`]);
|
|
338
|
+
stashed = true;
|
|
339
|
+
}
|
|
340
|
+
|
|
331
341
|
const result = deps.runGit(["merge", "--ff-only", orchBranch]);
|
|
342
|
+
|
|
343
|
+
// Always pop stash if we stashed, regardless of ff result
|
|
344
|
+
if (stashed) {
|
|
345
|
+
deps.runGit(["stash", "pop"]);
|
|
346
|
+
}
|
|
347
|
+
|
|
332
348
|
if (!result.ok) {
|
|
333
349
|
return {
|
|
334
350
|
success: false,
|
|
@@ -359,7 +375,20 @@ export function executeIntegration(
|
|
|
359
375
|
}
|
|
360
376
|
|
|
361
377
|
if (mode === "merge") {
|
|
378
|
+
// Stash dirty working tree (same as ff mode — workspace STATUS.md artifacts)
|
|
379
|
+
let mergeStashed = false;
|
|
380
|
+
const mergeStatusCheck = deps.runGit(["status", "--porcelain"]);
|
|
381
|
+
if (mergeStatusCheck.ok && mergeStatusCheck.stdout.trim()) {
|
|
382
|
+
deps.runGit(["stash", "push", "--include-untracked", "-m", `orch-integrate-autostash-${batchId}`]);
|
|
383
|
+
mergeStashed = true;
|
|
384
|
+
}
|
|
385
|
+
|
|
362
386
|
const result = deps.runGit(["merge", orchBranch, "--no-edit"]);
|
|
387
|
+
// Pop stash regardless of merge result
|
|
388
|
+
if (mergeStashed) {
|
|
389
|
+
deps.runGit(["stash", "pop"]);
|
|
390
|
+
}
|
|
391
|
+
|
|
363
392
|
if (!result.ok) {
|
|
364
393
|
return {
|
|
365
394
|
success: false,
|
|
@@ -50,14 +50,15 @@ export const ORCH_MESSAGES = {
|
|
|
50
50
|
}
|
|
51
51
|
if (orchBranch && succeeded > 0) {
|
|
52
52
|
lines.push("");
|
|
53
|
-
lines.push(` ℹ
|
|
53
|
+
lines.push(` ℹ All work is on orch branch: ${orchBranch}`);
|
|
54
|
+
lines.push(` Your ${baseBranch || "working"} branch was not modified.`);
|
|
54
55
|
if (baseBranch) {
|
|
55
|
-
lines.push(`
|
|
56
|
+
lines.push(` Preview: git log ${baseBranch}..${orchBranch}`);
|
|
56
57
|
}
|
|
57
|
-
lines.push("
|
|
58
|
-
lines.push("
|
|
59
|
-
lines.push(" • /orch-integrate
|
|
60
|
-
lines.push(" • /orch-integrate --pr
|
|
58
|
+
lines.push("");
|
|
59
|
+
lines.push(" To apply the changes:");
|
|
60
|
+
lines.push(" • /orch-integrate Apply now (fast-forward, recommended)");
|
|
61
|
+
lines.push(" • /orch-integrate --pr Push orch branch & open a PR for team review");
|
|
61
62
|
}
|
|
62
63
|
return lines.join("\n");
|
|
63
64
|
},
|