0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 13:38:32 +00:00
renovatebot_renovate/lib/util/package-rules/categories.ts
Rhys Arkins 69dab293f5 feat(packageRules)!: support regex or glob matching for all (#28591)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2024-07-25 15:28:16 +02:00

22 lines
594 B
TypeScript

import is from '@sindresorhus/is';
import type { PackageRule, PackageRuleInputConfig } from '../../config/types';
import { anyMatchRegexOrGlobList } from '../string-match';
import { Matcher } from './base';
export class CategoriesMatcher extends Matcher {
override matches(
{ categories }: PackageRuleInputConfig,
{ matchCategories }: PackageRule,
): boolean | null {
if (is.nullOrUndefined(matchCategories)) {
return null;
}
if (is.nullOrUndefined(categories)) {
return false;
}
return anyMatchRegexOrGlobList(categories, matchCategories);
}
}