Skip to content

Commit

Permalink
Merge pull request #2304 from carapace-sh/gh-release-2.46.0
Browse files Browse the repository at this point in the history
gh: updates from 2.46.0
  • Loading branch information
rsteube authored Mar 20, 2024
2 parents c147567 + b7c0b28 commit 5138af7
Show file tree
Hide file tree
Showing 3 changed files with 3 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 @@ -8,7 +8,7 @@ import (

var auth_statusCmd = &cobra.Command{
Use: "status",
Short: "View authentication status",
Short: "View all accounts and authentication status",
Run: func(cmd *cobra.Command, args []string) {},
}

Expand Down
2 changes: 1 addition & 1 deletion completers/gh_completer/cmd/auth_token.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func init() {

auth_tokenCmd.Flags().StringP("hostname", "h", "", "The hostname of the GitHub instance authenticated with")
auth_tokenCmd.Flags().Bool("secure-storage", false, "Search only secure credential store for authentication token")
auth_tokenCmd.Flags().StringP("user", "u", "", "The account to log out of")
auth_tokenCmd.Flags().StringP("user", "u", "", "The account to output the token for")
auth_tokenCmd.Flag("secure-storage").Hidden = true
authCmd.AddCommand(auth_tokenCmd)

Expand Down
1 change: 1 addition & 0 deletions completers/gh_completer/cmd/pr_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ func init() {
pr_createCmd.Flags().StringP("body", "b", "", "Body for the pull request")
pr_createCmd.Flags().StringP("body-file", "F", "", "Read body text from `file` (use \"-\" to read from standard input)")
pr_createCmd.Flags().BoolP("draft", "d", false, "Mark pull request as a draft")
pr_createCmd.Flags().Bool("dry-run", false, "Print details instead of creating the PR. May still push git changes.")
pr_createCmd.Flags().BoolP("fill", "f", false, "Use commit info for title and body")
pr_createCmd.Flags().Bool("fill-first", false, "Use first commit info for title and body")
pr_createCmd.Flags().Bool("fill-verbose", false, "Use commits msg+body for description")
Expand Down

0 comments on commit 5138af7

Please sign in to comment.