Merge pull request #42044 from nathanlcarlson/labels_regex_length_check

Check the length of the correct variable #42039
This commit is contained in:
Sebastiaan van Stijn 2021-02-18 22:22:44 +01:00 committed by GitHub
commit 8b6d9eaa55
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,7 +42,7 @@ func (info *Info) ExtraAttributes(keyMod func(string) string) (map[string]string
}
labelsRegex, ok := info.Config["labels-regex"]
if ok && len(labels) > 0 {
if ok && len(labelsRegex) > 0 {
re, err := regexp.Compile(labelsRegex)
if err != nil {
return nil, err