summaryrefslogtreecommitdiff
path: root/source/github-helpers/bugs-label.ts
blob: 1d8a9f5123832e8389df97dd0ac7f7f195660923 (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.replaceAll(/\s/g, ''));
}