storkit: merge 386_story_unreleased_command_shows_list_of_stories_since_last_release

This commit is contained in:
dave
2026-03-24 22:20:19 +00:00
parent a9aa88b655
commit 11bbfca3da
2 changed files with 314 additions and 0 deletions
@@ -15,6 +15,7 @@ mod overview;
mod show;
mod status;
mod triage;
mod unreleased;
use crate::agents::AgentPool;
use std::collections::HashSet;
@@ -152,6 +153,11 @@ pub fn commands() -> &'static [BotCommand] {
description: "Rebuild the server binary and restart",
handler: handle_rebuild_fallback,
},
BotCommand {
name: "unreleased",
description: "Show stories merged to master since the last release tag",
handler: unreleased::handle_unreleased,
},
]
}