From 86eee5c1e2c7d6084700b6db3c7ec4717b1b7e36 Mon Sep 17 00:00:00 2001 From: Steven Palma Date: Wed, 17 Dec 2025 22:40:33 +0100 Subject: [PATCH] fix(ci): close bracket pattern (#2674) --- .github/workflows/issue_labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/issue_labeler.yml b/.github/workflows/issue_labeler.yml index 49a06d05d..27ca2b5f9 100644 --- a/.github/workflows/issue_labeler.yml +++ b/.github/workflows/issue_labeler.yml @@ -43,7 +43,7 @@ jobs: // Keyword Heuristics // Domain Specific - if (matches(/\b(bug|error|issue|fault|crash|exception|\b/i)) labelsToAdd.add('bug'); + if (matches(/\b(bug|error|issue|fault|crash|exception)\b/i)) labelsToAdd.add('bug'); if (matches(/\b(feature|enhancement|improvement|support|implement|proposal)\b/i)) labelsToAdd.add('enhancement'); if (matches(/\b(question|help|how to||clarify|explain|unclear)\b/i)) labelsToAdd.add('question'); if (matches(/\b(maintenance|documentation|docs|readme|tutorial|guide|wiki)\b/i)) labelsToAdd.add('documentation');