From d4503d0ea7697f8622cef3bf26e249fc70a101ea Mon Sep 17 00:00:00 2001 From: Kynan Ware <47394200+BagToad@users.noreply.github.com> Date: Sat, 28 Feb 2026 12:05:45 -0700 Subject: [PATCH] Fix help-wanted label name mismatch in PR triage workflow The shared triage-pr-requirements workflow defaults help_wanted_label to 'help-wanted' (hyphenated), but the actual repo label is 'help wanted' (with a space). This caused grep -qx exact matching to always fail, incorrectly flagging every external PR as not meeting requirements. Pass the correct label name explicitly to both check-requirements and close-unmet-requirements jobs. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/triage-pull-requests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/triage-pull-requests.yml b/.github/workflows/triage-pull-requests.yml index 92ba43d4a..0dcca9773 100644 --- a/.github/workflows/triage-pull-requests.yml +++ b/.github/workflows/triage-pull-requests.yml @@ -31,6 +31,8 @@ jobs: github.event_name == 'pull_request_target' && (github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'edited') uses: desktop/gh-cli-and-desktop-shared-workflows/.github/workflows/triage-pr-requirements.yml@main + with: + help_wanted_label: 'help wanted' permissions: issues: read pull-requests: write @@ -38,6 +40,8 @@ jobs: close-unmet-requirements: if: github.event_name == 'schedule' uses: desktop/gh-cli-and-desktop-shared-workflows/.github/workflows/triage-pr-requirements.yml@main + with: + help_wanted_label: 'help wanted' permissions: issues: read pull-requests: write