huskies: merge 870

This commit is contained in:
dave
2026-04-29 15:17:47 +00:00
parent db65271587
commit 2655288412
11 changed files with 251 additions and 80 deletions
+3 -3
View File
@@ -166,7 +166,7 @@ pub fn move_story_to_done(story_id: &str) -> Result<(), String> {
"5_done",
&["6_archived"],
false,
&["merge_failure", "retry_count", "blocked"],
&["merge_failure", "blocked"],
)
.map(|_| ())
}
@@ -181,7 +181,7 @@ pub fn move_story_to_merge(story_id: &str) -> Result<(), String> {
"4_merge",
&["5_done", "6_archived"],
false,
&["retry_count", "blocked"],
&["blocked"],
)
.map(|_| ())
}
@@ -196,7 +196,7 @@ pub fn move_story_to_qa(story_id: &str) -> Result<(), String> {
"3_qa",
&["5_done", "6_archived"],
false,
&["retry_count", "blocked"],
&["blocked"],
)
.map(|_| ())
}