From 1b1a83e19ce31a924f3c892678294bdf7dac7cbe Mon Sep 17 00:00:00 2001 From: Aviv Keller Date: Fri, 7 Aug 2026 16:48:31 -0400 Subject: [PATCH] meta: make code-and-learn PRs fast-trackable Ref: https://github.com/nodejs/node-core-utils/blob/main/lib/pr_checker.js#L276 Signed-off-by: Aviv Keller --- .github/workflows/commit-queue.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/commit-queue.yml b/.github/workflows/commit-queue.yml index 7af712268711..bdc76694bacc 100644 --- a/.github/workflows/commit-queue.yml +++ b/.github/workflows/commit-queue.yml @@ -42,14 +42,13 @@ jobs: -t '{{ range . }}{{ .number }} {{ end }}' \ --limit 100) fast_track_prs=$(gh pr list \ - --repo "$GITHUB_REPOSITORY" \ - --base "$GITHUB_REF_NAME" \ - --label 'commit-queue' \ - --label 'fast-track' \ - --search "-label:blocked" \ - --json 'number' \ - -t '{{ range . }}{{ .number }} {{ end }}' \ - --limit 100) + --repo "$GITHUB_REPOSITORY" \ + --base "$GITHUB_REF_NAME" \ + --label 'commit-queue' \ + --search "-label:blocked (label:fast-track OR label:code-and-learn)" \ + --json 'number' \ + -t '{{ range . }}{{ .number }} {{ end }}' \ + --limit 100) numbers=$(echo $prs' '$fast_track_prs | jq -r -s 'unique | join(" ")') echo "numbers=$numbers" >> "$GITHUB_OUTPUT" env: