Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var CmdActionsRuns = cli.Command{ Name: "runs", Aliases: []string{"run"}, Usage: "Manage workflow runs", Description: "List, view, and manage workflow runs for repository actions", Action: runRunsDefault, Commands: []*cli.Command{ &runs.CmdRunsList, &runs.CmdRunsView, &runs.CmdRunsDelete, &runs.CmdRunsLogs, }, }
CmdActionsRuns represents the actions runs command
View Source
var CmdActionsSecrets = cli.Command{ Name: "secrets", Aliases: []string{"secret"}, Usage: "Manage repository action secrets", Description: "Manage secrets used by repository actions and workflows", Action: runSecretsDefault, Commands: []*cli.Command{ &secrets.CmdSecretsList, &secrets.CmdSecretsCreate, &secrets.CmdSecretsDelete, }, }
CmdActionsSecrets represents the actions secrets command
View Source
var CmdActionsVariables = cli.Command{ Name: "variables", Aliases: []string{"variable", "vars", "var"}, Usage: "Manage repository action variables", Description: "Manage variables used by repository actions and workflows", Action: runVariablesDefault, Commands: []*cli.Command{ &variables.CmdVariablesList, &variables.CmdVariablesSet, &variables.CmdVariablesDelete, }, }
CmdActionsVariables represents the actions variables command
View Source
var CmdActionsWorkflows = cli.Command{ Name: "workflows", Aliases: []string{"workflow"}, Usage: "Manage repository workflows", Description: "List and manage repository action workflows", Action: runWorkflowsDefault, Commands: []*cli.Command{ &workflows.CmdWorkflowsList, }, }
CmdActionsWorkflows represents the actions workflows command
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.