feat(healthcheck/releasetag): recommended tag listcheck #57

Closed
周赵嘉程521432910016 wants to merge 8 commits from feat/releasetag into master
Showing only changes of commit e7e24f7c8f - Show all commits

View File

@ -16,7 +16,7 @@ type Conf struct {
FullScore int
MinScore int
Files []string
EndOnMatch bool
ForceQuitOnMatch bool
Matches []Match
}
@ -58,7 +58,7 @@ func (*Keyword) Run(results []stage.ExecutorResult, confAny any) (
forceQuit := false
for _, result := range results {
tmp, matched := Parse(result, *conf)
if matched && conf.EndOnMatch {
if matched && conf.ForceQuitOnMatch {
forceQuit = true
}
res = append(res, tmp)