From 25443db104d39a3dcd410fa882884580734cfaa4 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Tue, 31 Mar 2026 16:35:57 +0200 Subject: [PATCH] tools: allow triagers to queue a PR for CI until it's reviewed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/62524 Fixes: https://github.com/nodejs/node/issues/62496 Reviewed-By: Filip Skokan Reviewed-By: Michaƫl Zasso --- .github/workflows/auto-start-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auto-start-ci.yml b/.github/workflows/auto-start-ci.yml index 747b957ee33c85..72f93539ec7f70 100644 --- a/.github/workflows/auto-start-ci.yml +++ b/.github/workflows/auto-start-ci.yml @@ -28,13 +28,13 @@ jobs: - name: Get Pull Requests id: get_prs_for_ci run: > - numbers=$(gh pr list \ - --repo ${{ github.repository }} \ + echo "numbers=$(gh pr list \ + --repo "$GITHUB_REPOSITORY" \ --label 'request-ci' \ --json 'number' \ + --search 'review:approved' \ -t '{{ range . }}{{ .number }} {{ end }}' \ - --limit 5) - echo "numbers=$numbers" >> $GITHUB_OUTPUT + --limit 5)" >> "$GITHUB_OUTPUT" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} start-ci: