Add possiblity to limit actions to tagged or named repository
This commit is contained in:
parent
5c98ab6554
commit
23e4547e52
11 changed files with 345 additions and 24 deletions
|
|
@ -6,9 +6,10 @@ type Configuration struct {
|
|||
}
|
||||
|
||||
type RepositoryConfig struct {
|
||||
Name string `yaml:",omitempty"`
|
||||
Src string `yaml:",omitempty"`
|
||||
Dest string `yaml:",omitempty"`
|
||||
Name string `yaml:",omitempty"`
|
||||
Src string `yaml:",omitempty"`
|
||||
Dest string `yaml:",omitempty"`
|
||||
Tags []string `yaml:",omitempty"`
|
||||
}
|
||||
|
||||
type CliArguments struct {
|
||||
|
|
@ -17,4 +18,6 @@ type CliArguments struct {
|
|||
Status bool
|
||||
Version bool
|
||||
Color bool
|
||||
LimitName string
|
||||
LimitTags []string
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue