diff --git a/completers/gh_completer/cmd/attestation_verify.go b/completers/gh_completer/cmd/attestation_verify.go index 236d9e7c5b..3c866af2bf 100644 --- a/completers/gh_completer/cmd/attestation_verify.go +++ b/completers/gh_completer/cmd/attestation_verify.go @@ -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`") diff --git a/completers/gh_completer/cmd/auth_status.go b/completers/gh_completer/cmd/auth_status.go index bba02dbce8..cbee08dfba 100644 --- a/completers/gh_completer/cmd/auth_status.go +++ b/completers/gh_completer/cmd/auth_status.go @@ -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) {}, } diff --git a/completers/gh_completer/cmd/cache.go b/completers/gh_completer/cmd/cache.go index 49da3cf053..91880a8858 100644 --- a/completers/gh_completer/cmd/cache.go +++ b/completers/gh_completer/cmd/cache.go @@ -8,7 +8,7 @@ import ( var cacheCmd = &cobra.Command{ Use: "cache ", - Short: "Manage Github Actions caches", + Short: "Manage GitHub Actions caches", GroupID: "actions", Run: func(cmd *cobra.Command, args []string) {}, } diff --git a/completers/gh_completer/cmd/cache_delete.go b/completers/gh_completer/cmd/cache_delete.go index bbc78165d5..e2b756df09 100644 --- a/completers/gh_completer/cmd/cache_delete.go +++ b/completers/gh_completer/cmd/cache_delete.go @@ -8,7 +8,7 @@ import ( var cache_deleteCmd = &cobra.Command{ Use: "delete [| | --all]", - Short: "Delete Github Actions caches", + Short: "Delete GitHub Actions caches", Run: func(cmd *cobra.Command, args []string) {}, } diff --git a/completers/gh_completer/cmd/cache_list.go b/completers/gh_completer/cmd/cache_list.go index 7e98f5f502..cb75d227e2 100644 --- a/completers/gh_completer/cmd/cache_list.go +++ b/completers/gh_completer/cmd/cache_list.go @@ -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) {}, } diff --git a/completers/gh_completer/cmd/release_create.go b/completers/gh_completer/cmd/release_create.go index d1e9f4e727..b224ea8710 100644 --- a/completers/gh_completer/cmd/release_create.go +++ b/completers/gh_completer/cmd/release_create.go @@ -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") diff --git a/completers/gh_completer/cmd/secret_set.go b/completers/gh_completer/cmd/secret_set.go index 6b5408dc29..22715a5657 100644 --- a/completers/gh_completer/cmd/secret_set.go +++ b/completers/gh_completer/cmd/secret_set.go @@ -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")