Found with
rg '(^ | \t|\t )' -g '*.go' -g '!*_test.go'
Mixed indent exceptions:
- wrapped long list items with extra 2-space indent
- code snippets using space indent
- commented code lines having "\t*// \t+" prefix
31 lines
954 B
Go
31 lines
954 B
Go
package variable
|
|
|
|
import (
|
|
"github.com/MakeNowJust/heredoc"
|
|
cmdDelete "github.com/cli/cli/v2/pkg/cmd/variable/delete"
|
|
cmdGet "github.com/cli/cli/v2/pkg/cmd/variable/get"
|
|
cmdList "github.com/cli/cli/v2/pkg/cmd/variable/list"
|
|
cmdSet "github.com/cli/cli/v2/pkg/cmd/variable/set"
|
|
"github.com/cli/cli/v2/pkg/cmdutil"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func NewCmdVariable(f *cmdutil.Factory) *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "variable <command>",
|
|
Short: "Manage GitHub Actions variables",
|
|
Long: heredoc.Docf(`
|
|
Variables can be set at the repository, environment or organization level for use in
|
|
GitHub Actions or Dependabot. Run %[1]sgh help variable set%[1]s to learn how to get started.
|
|
`, "`"),
|
|
}
|
|
|
|
cmdutil.EnableRepoOverride(cmd, f)
|
|
|
|
cmd.AddCommand(cmdGet.NewCmdGet(f, nil))
|
|
cmd.AddCommand(cmdSet.NewCmdSet(f, nil))
|
|
cmd.AddCommand(cmdList.NewCmdList(f, nil))
|
|
cmd.AddCommand(cmdDelete.NewCmdDelete(f, nil))
|
|
|
|
return cmd
|
|
}
|