Add possiblity to limit actions to tagged or named repository

This commit is contained in:
Mikołaj Pęczkowski 2021-11-07 14:05:45 +01:00
parent 5c98ab6554
commit 23e4547e52
11 changed files with 345 additions and 24 deletions

View file

@ -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
}