Skip to content

Commit

Permalink
gh: updates from v2.54.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Aug 1, 2024
1 parent 2d24ee5 commit 4ff4dab
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion completers/gh_completer/cmd/auth_status.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var auth_statusCmd = &cobra.Command{
func init() {
carapace.Gen(auth_statusCmd).Standalone()

auth_statusCmd.Flags().StringP("hostname", "h", "", "Check a specific hostname's auth status")
auth_statusCmd.Flags().StringP("hostname", "h", "", "Check only a specific hostname's auth status")
auth_statusCmd.Flags().BoolP("show-token", "t", false, "Display the auth token")
authCmd.AddCommand(auth_statusCmd)

Expand Down
2 changes: 1 addition & 1 deletion completers/gh_completer/cmd/issue_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func init() {
issue_createCmd.Flags().StringP("milestone", "m", "", "Add the issue to a milestone by `name`")
issue_createCmd.Flags().StringSliceP("project", "p", []string{}, "Add the issue to projects by `name`")
issue_createCmd.Flags().String("recover", "", "Recover input from a failed run of create")
issue_createCmd.Flags().StringP("template", "T", "", "Template `name` to use as starting body text")
issue_createCmd.Flags().StringP("template", "T", "", "Template `file` to use as starting body text")
issue_createCmd.Flags().StringP("title", "t", "", "Supply a title. Will prompt for one otherwise.")
issue_createCmd.Flags().BoolP("web", "w", false, "Open the browser to create an issue")
issueCmd.AddCommand(issue_createCmd)
Expand Down
1 change: 1 addition & 0 deletions completers/gh_completer/cmd/issue_edit.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ func init() {
issue_editCmd.Flags().StringP("milestone", "m", "", "Edit the milestone the issue belongs to by `name`")
issue_editCmd.Flags().StringSlice("remove-assignee", []string{}, "Remove assigned users by their `login`. Use \"@me\" to unassign yourself.")
issue_editCmd.Flags().StringSlice("remove-label", []string{}, "Remove labels by `name`")
issue_editCmd.Flags().Bool("remove-milestone", false, "Remove the milestone association from the issue")
issue_editCmd.Flags().StringSlice("remove-project", []string{}, "Remove the issue from projects by `name`")
issue_editCmd.Flags().StringP("title", "t", "", "Set the new title.")
issueCmd.AddCommand(issue_editCmd)
Expand Down
1 change: 1 addition & 0 deletions completers/gh_completer/cmd/pr_edit.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ func init() {
pr_editCmd.Flags().StringP("milestone", "m", "", "Edit the milestone the pull request belongs to by `name`")
pr_editCmd.Flags().StringSlice("remove-assignee", []string{}, "Remove assigned users by their `login`. Use \"@me\" to unassign yourself.")
pr_editCmd.Flags().StringSlice("remove-label", []string{}, "Remove labels by `name`")
pr_editCmd.Flags().Bool("remove-milestone", false, "Remove the milestone association from the pull request")
pr_editCmd.Flags().StringSlice("remove-project", []string{}, "Remove the pull request from projects by `name`")
pr_editCmd.Flags().StringSlice("remove-reviewer", []string{}, "Remove reviewers by their `login`.")
pr_editCmd.Flags().StringP("title", "t", "", "Set the new title.")
Expand Down

0 comments on commit 4ff4dab

Please sign in to comment.