From 8c01fecc919bb4918eef67d6c756117e96c7b8a8 Mon Sep 17 00:00:00 2001 From: teor Date: Thu, 19 Oct 2023 23:41:23 +1000 Subject: [PATCH] Limit jobs launched by the crates workflow (#7754) --- .github/workflows/ci-build-crates.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-build-crates.yml b/.github/workflows/ci-build-crates.yml index 8adf9e08047..08244bd804f 100644 --- a/.github/workflows/ci-build-crates.yml +++ b/.github/workflows/ci-build-crates.yml @@ -103,6 +103,8 @@ jobs: needs: [ matrix, check-matrix ] runs-on: ubuntu-latest strategy: + # avoid rate-limit errors by only launching a few of these jobs at a time + max-parallel: 2 fail-fast: true matrix: ${{ fromJson(needs.matrix.outputs.matrix) }}