summaryrefslogtreecommitdiff
path: root/source/github-helpers/bugs-label.ts
blob: 823131547a4426f07025a292ea518d7f7d056cbd (plain) (blame)
1
2
3
4
const supportedLabels = /^(bug|bug-?fix|confirmed-bug|(type|kind|triage)[:/]bug|(:[\w-]+:|\p{Emoji})bug)$/iu;
export default function isBugLabel(label: string): boolean {
	return supportedLabels.test(label.replaceAll(/\s/g, ''));
}