Update pkg/cli/commands/read.go

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Robin Olsen
2026-02-05 13:51:19 +01:00
committed by Robin Olsen
parent ec0a6de601
commit 0c737787b4

View File

@@ -9,8 +9,8 @@ import (
var getIssueCmd = &cobra.Command{
Use: "describe [issue ID]",
Aliases: []string{"get", "read"},
Short: "Gets issue details",
Long: `Gets issue details by ID`,
Short: "Get issue details",
Long: `Get issue details by ID`,
RunE: runGetCmd,
Args: cobra.ExactArgs(1),
ValidArgsFunction: completeIssues,