X Tutup
Skip to content

Commit 75abeb1

Browse files
authored
Merge pull request cli#3786 from browniebroke/remove-secret-long-description
Add a long command description for secrets remove
2 parents 7d8940b + 051520a commit 75abeb1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/cmd/secret/remove/remove.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ func NewCmdRemove(f *cmdutil.Factory, runF func(*RemoveOptions) error) *cobra.Co
3232

3333
cmd := &cobra.Command{
3434
Use: "remove <secret-name>",
35-
Short: "Remove an organization, environment, or repository secret",
35+
Short: "Remove secrets",
36+
Long: "Remove a secret for a repository, environment, or organization",
3637
Args: cobra.ExactArgs(1),
3738
RunE: func(cmd *cobra.Command, args []string) error {
3839
// support `-R, --repo` override

0 commit comments

Comments
 (0)
X Tutup