From 92546b4c2fa5c2376ba6a9ea5d3da10818cdaaf5 Mon Sep 17 00:00:00 2001 From: Urgau Date: Sun, 9 Feb 2025 11:05:54 +0100 Subject: [PATCH] Remove `S-inactive` label when using shortcuts --- src/handlers/shortcut.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/shortcut.rs b/src/handlers/shortcut.rs index 9f9584e97..e25f171ea 100644 --- a/src/handlers/shortcut.rs +++ b/src/handlers/shortcut.rs @@ -29,7 +29,7 @@ pub(super) async fn handle_command( let waiting_on_review = "S-waiting-on-review"; let waiting_on_author = "S-waiting-on-author"; let blocked = "S-blocked"; - let status_labels = [waiting_on_review, waiting_on_author, blocked]; + let status_labels = [waiting_on_review, waiting_on_author, blocked, "S-inactive"]; let add = match input { ShortcutCommand::Ready => waiting_on_review,