huskies: merge 1073

This commit is contained in:
dave
2026-05-15 00:30:07 +00:00
parent d4db96f709
commit f9b140add9
9 changed files with 161 additions and 2 deletions
+10
View File
@@ -90,4 +90,14 @@ pub enum WatcherEvent {
/// `true` if acceptance gates passed; `false` if they failed.
success: bool,
},
/// A new work item was successfully created and added to the backlog.
/// Triggers a creation notification to configured chat rooms.
NewItemCreated {
/// Work item ID (e.g. `"1075_refactor_split_stage_enum"`).
item_id: String,
/// Human-readable item type (`"story"`, `"bug"`, `"refactor"`, `"spike"`).
item_type: String,
/// Human-readable item name.
name: String,
},
}