Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh: updates from v2.49.2 #2381

Merged
merged 1 commit into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion completers/gh_completer/cmd/attestation_verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func init() {
attestation_verifyCmd.Flags().StringP("cert-identity-regex", "i", "", "Enforce that the certificate's subject alternative name matches the provided regex")
attestation_verifyCmd.Flags().String("cert-oidc-issuer", "", "Issuer of the OIDC token")
attestation_verifyCmd.Flags().String("custom-trusted-root", "", "Path to a custom trustedroot.json file to use for verification")
attestation_verifyCmd.Flags().Bool("deny-self-hosted-runners", false, "Fail verification for attestations generated on self-hosted runners.")
attestation_verifyCmd.Flags().Bool("deny-self-hosted-runners", false, "Fail verification for attestations generated on self-hosted runners")
attestation_verifyCmd.Flags().StringP("digest-alg", "d", "", "The algorithm used to compute a digest of the artifact: {sha256|sha512}")
attestation_verifyCmd.Flags().String("format", "", "Output format: {json}")
attestation_verifyCmd.Flags().StringP("jq", "q", "", "Filter JSON output using a jq `expression`")
Expand Down
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 all accounts and authentication status",
Short: "Display active account and authentication state on each known GitHub host",
Run: func(cmd *cobra.Command, args []string) {},
}

Expand Down
2 changes: 1 addition & 1 deletion completers/gh_completer/cmd/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

var cacheCmd = &cobra.Command{
Use: "cache <command>",
Short: "Manage Github Actions caches",
Short: "Manage GitHub Actions caches",
GroupID: "actions",
Run: func(cmd *cobra.Command, args []string) {},
}
Expand Down
2 changes: 1 addition & 1 deletion completers/gh_completer/cmd/cache_delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

var cache_deleteCmd = &cobra.Command{
Use: "delete [<cache-id>| <cache-key> | --all]",
Short: "Delete Github Actions caches",
Short: "Delete GitHub Actions caches",
Run: func(cmd *cobra.Command, args []string) {},
}

Expand Down
2 changes: 1 addition & 1 deletion completers/gh_completer/cmd/cache_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

var cache_listCmd = &cobra.Command{
Use: "list",
Short: "List Github Actions caches",
Short: "List GitHub Actions caches",
Aliases: []string{"ls"},
Run: func(cmd *cobra.Command, args []string) {},
}
Expand Down
2 changes: 1 addition & 1 deletion completers/gh_completer/cmd/release_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func init() {
release_createCmd.Flags().String("discussion-category", "", "Start a discussion in the specified category")
release_createCmd.Flags().BoolP("draft", "d", false, "Save the release as a draft instead of publishing it")
release_createCmd.Flags().Bool("generate-notes", false, "Automatically generate title and notes for the release")
release_createCmd.Flags().Bool("latest", false, "Mark this release as \"Latest\" (default [automatic based on date and version])")
release_createCmd.Flags().Bool("latest", false, "Mark this release as \"Latest\" (default [automatic based on date and version]). --latest=false to explicitly NOT set as latest")
release_createCmd.Flags().StringP("notes", "n", "", "Release notes")
release_createCmd.Flags().StringP("notes-file", "F", "", "Read release notes from `file` (use \"-\" to read from standard input)")
release_createCmd.Flags().Bool("notes-from-tag", false, "Automatically generate notes from annotated tag")
Expand Down
2 changes: 1 addition & 1 deletion completers/gh_completer/cmd/secret_set.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ func init() {
secret_setCmd.Flags().StringP("body", "b", "", "The value for the secret (reads from standard input if not specified)")
secret_setCmd.Flags().StringP("env", "e", "", "Set deployment `environment` secret")
secret_setCmd.Flags().StringP("env-file", "f", "", "Load secret names and values from a dotenv-formatted `file`")
secret_setCmd.Flags().Bool("no-store", false, "Print the encrypted, base64-encoded value instead of storing it on Github")
secret_setCmd.Flags().Bool("no-store", false, "Print the encrypted, base64-encoded value instead of storing it on GitHub")
secret_setCmd.Flags().StringP("org", "o", "", "Set `organization` secret")
secret_setCmd.Flags().StringSliceP("repos", "r", []string{}, "List of `repositories` that can access an organization or user secret")
secret_setCmd.Flags().BoolP("user", "u", false, "Set a secret for your user")
Expand Down