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