Documentation ¶
Overview ¶
Package repo provides the defined repo CLI command for Vela.
Usage:
import "github.com/go-vela/cli/command/repo"
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var CommandAdd = &cli.Command{ Name: "repo", Description: "Use this command to add a repository.", Usage: "Add a new repository from the provided configuration", Action: add, Flags: []cli.Flag{ &cli.StringFlag{ EnvVars: []string{"VELA_ORG", "REPO_ORG"}, Name: internal.FlagOrg, Aliases: []string{"o"}, Usage: "provide the organization for the repository", }, &cli.StringFlag{ EnvVars: []string{"VELA_REPO", "REPO_NAME"}, Name: internal.FlagRepo, Aliases: []string{"r"}, Usage: "provide the name for the repository", }, &cli.StringFlag{ EnvVars: []string{"VELA_BRANCH", "REPO_BRANCH"}, Name: "branch", Aliases: []string{"b"}, Usage: "default branch for the repository", Value: "master", }, &cli.StringFlag{ EnvVars: []string{"VELA_LINK", "REPO_LINK"}, Name: "link", Aliases: []string{"l"}, Usage: "full URL to repository in source control", }, &cli.StringFlag{ EnvVars: []string{"VELA_CLONE", "REPO_CLONE"}, Name: "clone", Aliases: []string{"c"}, Usage: "full clone URL to repository in source control", }, &cli.StringFlag{ EnvVars: []string{"VELA_VISIBILITY", "REPO_VISIBILITY"}, Name: "visibility", Aliases: []string{"v"}, Usage: "access level required to view the repository", Value: constants.VisibilityPublic, }, &cli.Int64Flag{ EnvVars: []string{"VELA_BUILD_LIMIT", "REPO_BUILD_LIMIT"}, Name: "build.limit", Usage: "limit of concurrent builds allowed in repository", Value: constants.BuildLimitDefault, }, &cli.Int64Flag{ EnvVars: []string{"VELA_TIMEOUT", "REPO_TIMEOUT"}, Name: "timeout", Aliases: []string{"t"}, Usage: "max time allowed per build in repository", Value: constants.BuildTimeoutDefault, }, &cli.IntFlag{ EnvVars: []string{"VELA_COUNTER", "REPO_COUNTER"}, Name: "counter", Aliases: []string{"ct"}, Usage: "set a value for a new build number", }, &cli.StringFlag{ EnvVars: []string{"VELA_PRIVATE", "REPO_PRIVATE"}, Name: "private", Aliases: []string{"p"}, Usage: "disable public access to the repository", Value: "false", }, &cli.StringFlag{ EnvVars: []string{"VELA_TRUSTED", "REPO_TRUSTED"}, Name: "trusted", Aliases: []string{"tr"}, Usage: "elevated permissions for builds executed for repo", Value: "false", }, &cli.StringFlag{ EnvVars: []string{"VELA_ACTIVE", "REPO_ACTIVE"}, Name: "active", Aliases: []string{"a"}, Usage: "current status of the repository", Value: "true", }, &cli.StringSliceFlag{ EnvVars: []string{"VELA_EVENTS", "REPO_EVENTS"}, Name: "event", Aliases: []string{"e"}, Usage: "webhook event(s) repository responds to", }, &cli.StringFlag{ EnvVars: []string{"VELA_PIPELINE_TYPE", "PIPELINE_TYPE"}, Name: "pipeline-type", Aliases: []string{"pt"}, Usage: "type of base pipeline for the compiler to render", Value: constants.PipelineTypeYAML, }, &cli.StringFlag{ EnvVars: []string{"VELA_OUTPUT", "REPO_OUTPUT"}, Name: internal.FlagOutput, Aliases: []string{"op"}, Usage: "format the output in json, spew or yaml", }, }, CustomHelpTemplate: fmt.Sprintf(`%s EXAMPLES: 1. Add a repository with push and pull request enabled. $ {{.HelpName}} --org MyOrg --repo MyRepo --event push --event pull_request 2. Add a repository with all event types enabled. $ {{.HelpName}} --org MyOrg --repo MyRepo --event push --event pull_request --event tag --event deployment --event comment 3. Add a repository with a longer build timeout. $ {{.HelpName}} --org MyOrg --repo MyRepo --timeout 90 4. Add a repository when config or environment variables are set. $ {{.HelpName}} --event push --event pull_request 5. Add a repository with a starting build number. $ {{.HelpName}} --org MyOrg --repo MyRepo --counter 90 6. Add a repository with a starlark pipeline file. $ {{.HelpName}} --org MyOrg --repo MyRepo --pipeline-type starlark DOCUMENTATION: https://go-vela.github.io/docs/reference/cli/repo/add/ `, cli.CommandHelpTemplate), }
CommandAdd defines the command for creating a repository.
View Source
var CommandChown = &cli.Command{ Name: "repo", Description: "Use this command to change the repository owner.", Usage: "Change ownership of the provided repository", Action: chown, Flags: []cli.Flag{ &cli.StringFlag{ EnvVars: []string{"VELA_ORG", "REPO_ORG"}, Name: internal.FlagOrg, Aliases: []string{"o"}, Usage: "provide the organization for the repository", }, &cli.StringFlag{ EnvVars: []string{"VELA_REPO", "REPO_NAME"}, Name: internal.FlagRepo, Aliases: []string{"r"}, Usage: "provide the name for the repository", }, &cli.StringFlag{ EnvVars: []string{"VELA_OUTPUT", "REPO_OUTPUT"}, Name: internal.FlagOutput, Aliases: []string{"op"}, Usage: "format the output in json, spew or yaml", }, }, CustomHelpTemplate: fmt.Sprintf(`%s EXAMPLES: 1. Change ownership of a repository. $ {{.HelpName}} --org MyOrg --repo MyRepo 2. Change ownership of a repository with json output. $ {{.HelpName}} --org MyOrg --repo MyRepo --output json 3. Change ownership of a repository when config or environment variables are set. $ {{.HelpName}} DOCUMENTATION: https://go-vela.github.io/docs/reference/cli/repo/chown/ `, cli.CommandHelpTemplate), }
CommandChown defines the command for changing ownership of a repository.
View Source
var CommandGet = &cli.Command{ Name: "repo", Aliases: []string{"repos"}, Description: "Use this command to get a list of repositories.", Usage: "Display a list of repositories", Action: get, Flags: []cli.Flag{ &cli.StringFlag{ EnvVars: []string{"VELA_OUTPUT", "REPO_OUTPUT"}, Name: internal.FlagOutput, Aliases: []string{"op"}, Usage: "format the output in json, spew, wide or yaml", }, &cli.IntFlag{ EnvVars: []string{"VELA_PAGE", "REPO_PAGE"}, Name: internal.FlagPage, Aliases: []string{"p"}, Usage: "print a specific page of repositories", Value: 1, }, &cli.IntFlag{ EnvVars: []string{"VELA_PER_PAGE", "REPO_PER_PAGE"}, Name: internal.FlagPerPage, Aliases: []string{"pp"}, Usage: "number of repositories to print per page", Value: 10, }, }, CustomHelpTemplate: fmt.Sprintf(`%s EXAMPLES: 1. Get a list of repositories. $ {{.HelpName}} 2. Get a list of repositories with wide view output. $ {{.HelpName}} --output wide 3. Get a list of repositories with yaml output. $ {{.HelpName}} --output yaml 4. Get a list of repositories with json output. $ {{.HelpName}} --output json 5. Get a list of repositories when config or environment variables are set. $ {{.HelpName}} DOCUMENTATION: https://go-vela.github.io/docs/reference/cli/repo/get/ `, cli.CommandHelpTemplate), }
CommandGet defines the command for capturing a list of repositories.
View Source
var CommandRemove = &cli.Command{ Name: "repo", Description: "Use this command to remove a repository.", Usage: "Remove the provided repository", Action: remove, Flags: []cli.Flag{ &cli.StringFlag{ EnvVars: []string{"VELA_ORG", "REPO_ORG"}, Name: internal.FlagOrg, Aliases: []string{"o"}, Usage: "provide the organization for the repository", }, &cli.StringFlag{ EnvVars: []string{"VELA_REPO", "REPO_NAME"}, Name: internal.FlagRepo, Aliases: []string{"r"}, Usage: "provide the name for the repository", }, &cli.StringFlag{ EnvVars: []string{"VELA_OUTPUT", "REPO_OUTPUT"}, Name: internal.FlagOutput, Aliases: []string{"op"}, Usage: "format the output in json, spew or yaml", }, }, CustomHelpTemplate: fmt.Sprintf(`%s EXAMPLES: 1. Remove a repository. $ {{.HelpName}} --org MyOrg --repo MyRepo 2. Remove a repository with json output. $ {{.HelpName}} --org MyOrg --repo MyRepo --output json 3. Remove a repository when config or environment variables are set. $ {{.HelpName}} DOCUMENTATION: https://go-vela.github.io/docs/reference/cli/repo/remove/ `, cli.CommandHelpTemplate), }
CommandRemove defines the command for removing a repository.
View Source
var CommandRepair = &cli.Command{ Name: "repo", Description: "Use this command to repair a damaged repository.", Usage: "Repair settings of the provided repository", Action: repair, Flags: []cli.Flag{ &cli.StringFlag{ EnvVars: []string{"VELA_ORG", "REPO_ORG"}, Name: internal.FlagOrg, Aliases: []string{"o"}, Usage: "provide the organization for the repository", }, &cli.StringFlag{ EnvVars: []string{"VELA_REPO", "REPO_NAME"}, Name: internal.FlagRepo, Aliases: []string{"r"}, Usage: "provide the name for the repository", }, &cli.StringFlag{ EnvVars: []string{"VELA_OUTPUT", "REPO_OUTPUT"}, Name: internal.FlagOutput, Aliases: []string{"op"}, Usage: "format the output in json, spew or yaml", }, }, CustomHelpTemplate: fmt.Sprintf(`%s EXAMPLES: 1. Repair a damaged repository. $ {{.HelpName}} --org MyOrg --repo MyRepo 2. Repair a damaged repository with json output. $ {{.HelpName}} --org MyOrg --repo MyRepo --output json 3. Repair a damaged repository when config or environment variables are set. $ {{.HelpName}} DOCUMENTATION: https://go-vela.github.io/docs/reference/cli/repo/repair/ `, cli.CommandHelpTemplate), }
CommandRepair defines the command for repairing settings of a repository.
View Source
var CommandSync = &cli.Command{ Name: "repo", Aliases: []string{"repos"}, Description: "Use this command to sync a repo with the SCM", Usage: "Clean up mismatches between Vela and SCM", Action: sync, Flags: []cli.Flag{ &cli.StringFlag{ EnvVars: []string{"VELA_ORG", "REPO_ORG"}, Name: internal.FlagOrg, Aliases: []string{"o"}, Usage: "provide the organization for the build", }, &cli.StringFlag{ EnvVars: []string{"VELA_REPO", "REPO_NAME"}, Name: internal.FlagRepo, Aliases: []string{"r"}, Usage: "provide the repository for the build", }, &cli.BoolFlag{ EnvVars: []string{"VELA_SYNC_ALL", "SYNC_ALL"}, Name: "all", Aliases: []string{"a"}, Usage: "flag to sync all repos in an org", }, }, CustomHelpTemplate: fmt.Sprintf(`%s EXAMPLES: 1. Sync a single repo with SCM. $ {{.HelpName}} --org MyOrg --repo MyRepo 2. Sync every repo within an org $ {{.HelpName}} --org MyOrg --all DOCUMENTATION: https://go-vela.github.io/docs/reference/cli/repo/sync/ `, cli.CommandHelpTemplate), }
CommandSync defines the command for syncing Vela Database with SCM repositories.
View Source
var CommandUpdate = &cli.Command{ Name: "repo", Description: "Use this command to update a repository.", Usage: "Update a new repository from the provided configuration", Action: update, Flags: []cli.Flag{ &cli.StringFlag{ EnvVars: []string{"VELA_ORG", "REPO_ORG"}, Name: internal.FlagOrg, Aliases: []string{"o"}, Usage: "provide the organization for the repository", }, &cli.StringFlag{ EnvVars: []string{"VELA_REPO", "REPO_NAME"}, Name: internal.FlagRepo, Aliases: []string{"r"}, Usage: "provide the name for the repository", }, &cli.StringFlag{ EnvVars: []string{"VELA_BRANCH", "REPO_BRANCH"}, Name: "branch", Aliases: []string{"b"}, Usage: "default branch for the repository", Value: "master", }, &cli.StringFlag{ EnvVars: []string{"VELA_LINK", "REPO_LINK"}, Name: "link", Aliases: []string{"l"}, Usage: "full URL to repository in source control", }, &cli.StringFlag{ EnvVars: []string{"VELA_CLONE", "REPO_CLONE"}, Name: "clone", Aliases: []string{"c"}, Usage: "full clone URL to repository in source control", }, &cli.StringFlag{ EnvVars: []string{"VELA_VISIBILITY", "REPO_VISIBILITY"}, Name: "visibility", Aliases: []string{"v"}, Usage: "access level required to view the repository", Value: constants.VisibilityPublic, }, &cli.Int64Flag{ EnvVars: []string{"VELA_BUILD_LIMIT", "REPO_BUILD_LIMIT"}, Name: "build.limit", Usage: "limit of concurrent builds allowed in repository", Value: constants.BuildLimitDefault, }, &cli.Int64Flag{ EnvVars: []string{"VELA_TIMEOUT", "REPO_TIMEOUT"}, Name: "timeout", Aliases: []string{"t"}, Usage: "max time allowed per build in repository", Value: constants.BuildTimeoutDefault, }, &cli.IntFlag{ EnvVars: []string{"VELA_COUNTER", "REPO_COUNTER"}, Name: "counter", Aliases: []string{"ct"}, Usage: "set a value for a new build number", }, &cli.StringFlag{ EnvVars: []string{"VELA_PRIVATE", "REPO_PRIVATE"}, Name: "private", Aliases: []string{"p"}, Usage: "disable public access to the repository", Value: "false", }, &cli.StringFlag{ EnvVars: []string{"VELA_TRUSTED", "REPO_TRUSTED"}, Name: "trusted", Aliases: []string{"tr"}, Usage: "elevated permissions for builds executed for repo", Value: "false", }, &cli.StringFlag{ EnvVars: []string{"VELA_ACTIVE", "REPO_ACTIVE"}, Name: "active", Aliases: []string{"a"}, Usage: "current status of the repository", Value: "true", }, &cli.StringSliceFlag{ EnvVars: []string{"VELA_EVENTS", "REPO_EVENTS"}, Name: "event", Aliases: []string{"e"}, Usage: "webhook event(s) repository responds to", Value: cli.NewStringSlice( constants.EventPush, constants.EventPull, ), }, &cli.StringFlag{ EnvVars: []string{"VELA_PIPELINE_TYPE", "PIPELINE_TYPE"}, Name: "pipeline-type", Aliases: []string{"pt"}, Usage: "type of base pipeline for the compiler to render", Value: constants.PipelineTypeYAML, }, &cli.StringFlag{ EnvVars: []string{"VELA_OUTPUT", "REPO_OUTPUT"}, Name: internal.FlagOutput, Aliases: []string{"op"}, Usage: "format the output in json, spew or yaml", }, }, CustomHelpTemplate: fmt.Sprintf(`%s EXAMPLES: 1. Update a repository with push and pull request enabled. $ {{.HelpName}} --org MyOrg --repo MyRepo --event push --event pull_request 2. Update a repository with all event types enabled. $ {{.HelpName}} --org MyOrg --repo MyRepo --event push --event pull_request --event tag --event deployment --event comment 3. Update a repository with a longer build timeout. $ {{.HelpName}} --org MyOrg --repo MyRepo --timeout 90 4. Update a repository when config or environment variables are set. $ {{.HelpName}} 5. Update a repository with a new build number. $ {{.HelpName}} --org MyOrg --repo MyRepo --counter 200 DOCUMENTATION: https://go-vela.github.io/docs/reference/cli/repo/update/ `, cli.CommandHelpTemplate), }
CommandUpdate defines the command for modifying a repository.
View Source
var CommandView = &cli.Command{ Name: "repo", Description: "Use this command to view a repo.", Usage: "View details of the provided repo", Action: view, Flags: []cli.Flag{ &cli.StringFlag{ EnvVars: []string{"VELA_ORG", "REPO_ORG"}, Name: internal.FlagOrg, Aliases: []string{"o"}, Usage: "provide the organization for the repository", }, &cli.StringFlag{ EnvVars: []string{"VELA_REPO", "REPO_NAME"}, Name: internal.FlagRepo, Aliases: []string{"r"}, Usage: "provide the name for the repository", }, &cli.StringFlag{ EnvVars: []string{"VELA_OUTPUT", "REPO_OUTPUT"}, Name: internal.FlagOutput, Aliases: []string{"op"}, Usage: "format the output in json, spew or yaml", Value: "yaml", }, }, CustomHelpTemplate: fmt.Sprintf(`%s EXAMPLES: 1. View details of a repository. $ {{.HelpName}} --org MyOrg --repo MyRepo 2. View details of a repository with json output. $ {{.HelpName}} --org MyOrg --repo MyRepo --output json 3. View details of a repository when config or environment variables are set. $ {{.HelpName}} DOCUMENTATION: https://go-vela.github.io/docs/reference/cli/repo/view/ `, cli.CommandHelpTemplate), }
CommandView defines the command for inspecting a repository.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.