huskies: merge 1009

This commit is contained in:
dave
2026-05-13 22:50:13 +00:00
parent a5cd3a2152
commit 4e007bb770
56 changed files with 453 additions and 384 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ pub(super) fn find_active_story_stage(
if let Ok(Some(item)) = crate::pipeline_state::read_typed(story_id)
&& matches!(
item.stage,
crate::pipeline_state::Stage::Coding
crate::pipeline_state::Stage::Coding { .. }
| crate::pipeline_state::Stage::Qa
| crate::pipeline_state::Stage::Merge { .. }
)
@@ -56,7 +56,7 @@ mod tests {
let tmp = tempfile::tempdir().unwrap();
assert!(matches!(
find_active_story_stage(tmp.path(), "10_story_test"),
Some(crate::pipeline_state::Stage::Coding)
Some(crate::pipeline_state::Stage::Coding { .. })
));
}