From fb4e67dd6e65528e8f125620ed7579e6d4ef0ea7 Mon Sep 17 00:00:00 2001 From: Daniel Hast Date: Tue, 23 Dec 2025 14:55:42 -0500 Subject: [PATCH] fix(ci): remove concurrency limits from reusable workflows Having concurrency limits on reusable workflows seems to cause problems and shouldn't be necessary anyway, as the limits set by the workflows that call them should be sufficient. --- .github/workflows/build.yml | 4 ---- .github/workflows/test.yml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a89b6be6..2ccad39e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,10 +18,6 @@ env: permissions: {} -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ inputs.repo }}-${{ inputs.ref }} - cancel-in-progress: true - jobs: arm64-prebuild: timeout-minutes: 20 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a0e98fb1..d714af63 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,10 +20,6 @@ env: permissions: {} -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ inputs.repo }}-${{ inputs.ref }} - cancel-in-progress: true - jobs: test: timeout-minutes: 40