Skip to content

Commit 9ff9edc

Browse files
committed
fix(issue): reorder flags to ensure logical grouping and consistency
The order of the flags has been adjusted to group related options together, improving readability and maintainability. The 'label' flag is moved after 'issueid' to follow a more logical sequence.
1 parent aeeeb28 commit 9ff9edc

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

internal/cmd/issue.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ func IssueLabelEmailCmds() cli.Command {
5151
Name: "apiKey",
5252
Usage: "API key for mailgun",
5353
},
54-
cli.StringFlag{
55-
Name: "label",
56-
Usage: "The label that was added to the issue",
57-
},
5854
cli.IntFlag{
5955
Name: "issueid",
6056
Usage: "The id of the issue",
6157
},
58+
cli.StringFlag{
59+
Name: "label",
60+
Usage: "The label that was added to the issue",
61+
},
6262
cli.StringFlag{
6363
Name: "domain",
6464
Usage: "Domain of mailgun endpoint",

0 commit comments

Comments
 (0)