unhide actions commands

This commit is contained in:
vilmibm 2021-04-13 22:08:06 -05:00
parent 4e281153f6
commit cd8ec47163
3 changed files with 9 additions and 12 deletions

View file

@ -19,10 +19,9 @@ func NewCmdActions(f *cmdutil.Factory) *cobra.Command {
}
cmd := &cobra.Command{
Use: "actions",
Short: "Learn about working with GitHub actions",
Long: actionsExplainer(nil),
Hidden: true,
Use: "actions",
Short: "Learn about working with GitHub actions",
Long: actionsExplainer(nil),
Run: func(cmd *cobra.Command, args []string) {
actionsRun(opts)
},

View file

@ -12,10 +12,9 @@ import (
func NewCmdRun(f *cmdutil.Factory) *cobra.Command {
cmd := &cobra.Command{
Use: "run <command>",
Short: "View details about workflow runs",
Long: "List, view, and watch recent workflow runs from GitHub Actions.",
Hidden: true,
Use: "run <command>",
Short: "View details about workflow runs",
Long: "List, view, and watch recent workflow runs from GitHub Actions.",
Annotations: map[string]string{
"IsActions": "true",
},

View file

@ -12,10 +12,9 @@ import (
func NewCmdWorkflow(f *cmdutil.Factory) *cobra.Command {
cmd := &cobra.Command{
Use: "workflow <command>",
Short: "View details about GitHub Actions workflows",
Long: "List, view, and run workflows in GitHub Actions.",
Hidden: true,
Use: "workflow <command>",
Short: "View details about GitHub Actions workflows",
Long: "List, view, and run workflows in GitHub Actions.",
Annotations: map[string]string{
"IsActions": "true",
},