huskies: merge 1035

This commit is contained in:
dave
2026-05-14 13:11:26 +00:00
parent c353c0a6be
commit f1c96595de
6 changed files with 141 additions and 8 deletions
+10 -3
View File
@@ -138,26 +138,33 @@ fn status_to_stored(event: StatusEvent) -> Option<StoredEvent> {
match event {
StatusEvent::StageTransition {
story_id,
story_name,
from_stage,
to_stage,
..
} => Some(StoredEvent::StageTransition {
story_id,
story_name,
from_stage,
to_stage,
timestamp_ms: now_ms,
}),
StatusEvent::MergeFailure {
story_id, reason, ..
story_id,
story_name,
reason,
} => Some(StoredEvent::MergeFailure {
story_id,
story_name,
reason,
timestamp_ms: now_ms,
}),
StatusEvent::StoryBlocked {
story_id, reason, ..
story_id,
story_name,
reason,
} => Some(StoredEvent::StoryBlocked {
story_id,
story_name,
reason,
timestamp_ms: now_ms,
}),