From 42c8ce91d031152d8ba4c626bc9521e45fc745fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Wed, 3 Nov 2021 15:51:19 +0100 Subject: [PATCH] Group `gh secret` as an Actions command --- pkg/cmd/secret/secret.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkg/cmd/secret/secret.go b/pkg/cmd/secret/secret.go index a02bc3d4d..0199c82bc 100644 --- a/pkg/cmd/secret/secret.go +++ b/pkg/cmd/secret/secret.go @@ -16,7 +16,10 @@ func NewCmdSecret(f *cmdutil.Factory) *cobra.Command { Long: heredoc.Doc(` Secrets can be set at the repository, environment, or organization level for use in GitHub Actions. Run "gh help secret set" to learn how to get started. -`), + `), + Annotations: map[string]string{ + "IsActions": "true", + }, } cmdutil.EnableRepoOverride(cmd, f)