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
|
|
@ -53,6 +53,10 @@ func ParseCliArguments(name, description string, arguments []string) (CliArgumen
|
|||
Help: "Determine how many tasks can run simultaneously",
|
||||
})
|
||||
|
||||
ignoreSkipped := parser.Flag("", "ignore-skip-flag", &argparse.Options{
|
||||
Help: "Run selected command for all repositories with ignoring the skip flag",
|
||||
})
|
||||
|
||||
if err := parser.Parse(arguments); err != nil {
|
||||
return CliArguments{}, errors.New(parser.Usage("Please follow this help"))
|
||||
}
|
||||
|
|
@ -74,5 +78,6 @@ func ParseCliArguments(name, description string, arguments []string) (CliArgumen
|
|||
LimitToName: *limitName,
|
||||
LimitToTags: *limitTags,
|
||||
Routines: *limitRoutines,
|
||||
IgnoreSkipped: *ignoreSkipped,
|
||||
}, nil
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue