From f1996cd57165c72bba6f5534ffd9f31c6b6ea12a Mon Sep 17 00:00:00 2001 From: "Babak K. Shandiz" Date: Thu, 31 Jul 2025 15:29:54 +0100 Subject: [PATCH] ci: anchor regexp for `help wanted` label Signed-off-by: Babak K. Shandiz --- .github/workflows/scripts/check-help-wanted.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/scripts/check-help-wanted.sh b/.github/workflows/scripts/check-help-wanted.sh index 75462ddb9..dd58586dd 100755 --- a/.github/workflows/scripts/check-help-wanted.sh +++ b/.github/workflows/scripts/check-help-wanted.sh @@ -56,7 +56,7 @@ for issue_num in $CLOSING_ISSUES; do fi # Check if 'help wanted' label exists - if ! echo "$LABELS" | grep -q "help wanted"; then + if ! echo "$LABELS" | grep -qE '^help wanted$'; then ISSUES_WITHOUT_HELP_WANTED+=("$issue_num") echo "Issue #$issue_num does not have 'help wanted' label" else