From 7160feaf096dcdb00e4449d61e52f25a364a3180 Mon Sep 17 00:00:00 2001 From: jiaomh <168526697+Jiaohm@users.noreply.github.com> Date: Mon, 15 Jul 2024 21:14:42 +0800 Subject: [PATCH] Update labeler.yml --- .github/labeler.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index ad06d302e..e7e405d43 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -12,16 +12,16 @@ comment: | # - values are array of string patterns to match against title + body in issues/prs labels: 'bug': - - '\bbug[s]?\b' + - '(?i)\bbug[s]?\b' 'help wanted': - - '\bhelp( wanted)?\b' + - '(?i)\bhelp( wanted)?\b' 'feat': - - '\bfeat' + - '(?i)\bfeat' 'fix': - - '\bfix' + - '(?i)\bfix' 'style': - - '\bstyle' + - '(?i)\bstyle' 'chore': - - '\bchore' + - '(?i)\bchore' 'doc': - - '\bdoc[s]?' + - '(?i)\bdoc[s]?'