From 7867bf15f6078bc370aec26476fa61ecae7fe35e Mon Sep 17 00:00:00 2001 From: Alexey Date: Thu, 2 Apr 2026 16:11:49 +0300 Subject: [PATCH] feat: add -p shorthand for --priority in update command --- cmd/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/update.go b/cmd/update.go index c6f7b8f..6a0a958 100644 --- a/cmd/update.go +++ b/cmd/update.go @@ -260,7 +260,7 @@ func init() { updateCmd.Flags().String("acceptance", "", "New acceptance criteria") updateCmd.Flags().String("acceptance-file", "", "Read acceptance criteria from file or - for stdin (preserves formatting)") updateCmd.Flags().String("type", "", "New type") - updateCmd.Flags().String("priority", "", "New priority") + updateCmd.Flags().StringP("priority", "p", "", "New priority (P0, P1, P2, P3, P4)") updateCmd.Flags().Int("points", 0, "New story points") updateCmd.Flags().StringArrayP("labels", "l", nil, "Replace labels (repeatable, comma-separated)") updateCmd.Flags().String("sprint", "", "New sprint name (empty string to clear)")