Skip to content

Commit cd8ec47

Browse files
committed
unhide actions commands
1 parent 4e28115 commit cd8ec47

File tree

3 files changed

+9
-12
lines changed

3 files changed

+9
-12
lines changed

pkg/cmd/actions/actions.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@ func NewCmdActions(f *cmdutil.Factory) *cobra.Command {
1919
}
2020

2121
cmd := &cobra.Command{
22-
Use: "actions",
23-
Short: "Learn about working with GitHub actions",
24-
Long: actionsExplainer(nil),
25-
Hidden: true,
22+
Use: "actions",
23+
Short: "Learn about working with GitHub actions",
24+
Long: actionsExplainer(nil),
2625
Run: func(cmd *cobra.Command, args []string) {
2726
actionsRun(opts)
2827
},

pkg/cmd/run/run.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ import (
1212

1313
func NewCmdRun(f *cmdutil.Factory) *cobra.Command {
1414
cmd := &cobra.Command{
15-
Use: "run <command>",
16-
Short: "View details about workflow runs",
17-
Long: "List, view, and watch recent workflow runs from GitHub Actions.",
18-
Hidden: true,
15+
Use: "run <command>",
16+
Short: "View details about workflow runs",
17+
Long: "List, view, and watch recent workflow runs from GitHub Actions.",
1918
Annotations: map[string]string{
2019
"IsActions": "true",
2120
},

pkg/cmd/workflow/workflow.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ import (
1212

1313
func NewCmdWorkflow(f *cmdutil.Factory) *cobra.Command {
1414
cmd := &cobra.Command{
15-
Use: "workflow <command>",
16-
Short: "View details about GitHub Actions workflows",
17-
Long: "List, view, and run workflows in GitHub Actions.",
18-
Hidden: true,
15+
Use: "workflow <command>",
16+
Short: "View details about GitHub Actions workflows",
17+
Long: "List, view, and run workflows in GitHub Actions.",
1918
Annotations: map[string]string{
2019
"IsActions": "true",
2120
},

0 commit comments

Comments
 (0)