diff --git a/internal/github/pullrequest/labels.go b/internal/github/pullrequest/labels.go index c6544afb..0e525327 100644 --- a/internal/github/pullrequest/labels.go +++ b/internal/github/pullrequest/labels.go @@ -27,7 +27,7 @@ func (l Labels) HasNoneOf(specified []string, prefixMode bool) (bool, string) { // all of the specified labels, along with a report describing the result. func (l Labels) HasAllOf(specified []string, prefixMode bool) (bool, string) { if prefixMode { - return false, "The label checker does not support prefix checking with `all_of`, as that is not a logical combination." + return false, "The label checker does not support prefix checking with `all_of`, as that is not a logical combination." //nolint:lll } return l.hasXof(specified, "all", prefixMode) }