diff options
Diffstat (limited to 'source/github-helpers/bugs-label.ts')
-rw-r--r-- | source/github-helpers/bugs-label.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/github-helpers/bugs-label.ts b/source/github-helpers/bugs-label.ts index 1d8a9f51..82313154 100644 --- a/source/github-helpers/bugs-label.ts +++ b/source/github-helpers/bugs-label.ts @@ -1,4 +1,4 @@ -const supportedLabels = /^(bug|bug-?fix|confirmed-bug|type[:/]bug|kind[:/]bug|(:[\w-]+:|\p{Emoji})bug)$/iu; +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, '')); } |