From b18e4ae8370b791eb6d827193990f4497d7604a3 Mon Sep 17 00:00:00 2001 From: Spencer Tang Date: Thu, 30 Apr 2026 17:50:59 -0400 Subject: [PATCH] fix(github): do not sync 'help wanted' label to PRs The 'help wanted' label should remain on issues to indicate they are open for contribution, but should not be propagated to pull requests created to address those issues. --- .github/scripts/pr-triage.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/scripts/pr-triage.sh b/.github/scripts/pr-triage.sh index 92200ee4d2..2b4a27d8b6 100755 --- a/.github/scripts/pr-triage.sh +++ b/.github/scripts/pr-triage.sh @@ -40,7 +40,8 @@ get_issue_labels() { fi local labels - labels=$(echo "${gh_output}" | grep -x -E '(area|priority)/.*|help wanted|🔒 maintainer only' | tr '\n' ',' | sed 's/,$//' || echo "") + # Note: 'help wanted' is intentionally omitted here so it does not propagate from issues to PRs. + labels=$(echo "${gh_output}" | grep -x -E '(area|priority)/.*|🔒 maintainer only' | tr '\n' ',' | sed 's/,$//' || echo "") # Save to flat cache ISSUE_LABELS_CACHE_FLAT="${ISSUE_LABELS_CACHE_FLAT}${ISSUE_NUM}:${labels}|"