Add a skip field to the repository configuration
This commit is contained in:
parent
62dadc53bf
commit
19e68df732
4 changed files with 74 additions and 2 deletions
|
|
@ -6,10 +6,11 @@ type Configuration struct {
|
|||
}
|
||||
|
||||
type RepositoryConfig struct {
|
||||
Name string `yaml:",omitempty"`
|
||||
Src string `yaml:",omitempty"`
|
||||
Name string `yaml:",omitempty"`
|
||||
Src string
|
||||
Dest string `yaml:",omitempty"`
|
||||
Tags []string `yaml:",omitempty"`
|
||||
Skip bool
|
||||
}
|
||||
|
||||
type CliArguments struct {
|
||||
|
|
@ -21,4 +22,5 @@ type CliArguments struct {
|
|||
LimitToName string
|
||||
LimitToTags []string
|
||||
Routines int
|
||||
IgnoreSkipped bool
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue