From cc80513551503397e07c46f84e57ea48c342561e Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Tue, 8 Aug 2023 15:26:07 +0200 Subject: [PATCH] tools: limit the number of auto start CIs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/49067 Reviewed-By: Richard Lau Reviewed-By: Michaƫl Zasso Reviewed-By: Marco Ippolito --- .github/workflows/auto-start-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-start-ci.yml b/.github/workflows/auto-start-ci.yml index d1f84e65aa6f6f..03c5f326a06f39 100644 --- a/.github/workflows/auto-start-ci.yml +++ b/.github/workflows/auto-start-ci.yml @@ -34,7 +34,7 @@ jobs: --label 'request-ci' \ --json 'number' \ -t '{{ range . }}{{ .number }} {{ end }}' \ - --limit 100) + --limit 5) echo "numbers=$numbers" >> $GITHUB_OUTPUT env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}