From 42846a02b3330cda7bd8a2bae36e2f2448255998 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 a2378f714c5410..ccee82068eee68 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 }}