story-kit: merge 165_bug_pipeline_log_message_says_archived_instead_of_done

This commit is contained in:
Dave
2026-02-24 18:38:13 +00:00
parent 3fc886a271
commit 7b3853bad0
2 changed files with 5 additions and 5 deletions

View File

@@ -996,10 +996,10 @@ impl AgentPool {
if passed {
slog!(
"[pipeline] Post-merge tests passed for '{story_id}'. Archiving."
"[pipeline] Post-merge tests passed for '{story_id}'. Moving to done."
);
if let Err(e) = move_story_to_archived(&project_root, story_id) {
slog_error!("[pipeline] Failed to archive '{story_id}': {e}");
slog_error!("[pipeline] Failed to move '{story_id}' to done: {e}");
}
self.remove_agents_for_story(story_id);
// Mergemaster slot is now free — pick up any other items in 4_merge/.
@@ -1017,7 +1017,7 @@ impl AgentPool {
// );
// }
slog!(
"[pipeline] Story '{story_id}' archived. Worktree preserved for inspection."
"[pipeline] Story '{story_id}' done. Worktree preserved for inspection."
);
} else {
slog!(