From 0627979b9c8e39ce88dd041cbf87992870777196 Mon Sep 17 00:00:00 2001 From: daz Date: Thu, 11 Apr 2024 21:40:53 -0600 Subject: [PATCH] Only allow one integ-test at a time per branch --- .github/workflows/ci-integ-test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci-integ-test.yml b/.github/workflows/ci-integ-test.yml index 970c7da..85f0d7f 100644 --- a/.github/workflows/ci-integ-test.yml +++ b/.github/workflows/ci-integ-test.yml @@ -9,6 +9,10 @@ on: - 'release/**' - 'dev/**' # Allow running tests on dev branches without a PR +concurrency: + group: integ-tests-${{ github.ref }} + cancel-in-progress: false + jobs: determine-suite: runs-on: ubuntu-latest