From 2d636e9bf70967ac86ab140a9b09a2e5da4f0708 Mon Sep 17 00:00:00 2001 From: Ingo Fischer Date: Mon, 8 Jul 2024 14:21:36 +0200 Subject: [PATCH] prevent concurrent gha runs --- .github/workflows/test-and-release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index 7977dd81..7206be97 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -16,6 +16,10 @@ on: - "v?[0-9]+.[0-9]+.[0-9]+-**" pull_request: {} +concurrency: + group: ${{ github.ref }} + cancel-in-progress: true + jobs: # Performs quick checks before the expensive test runs check-and-lint: