From b9ddb48db4360cb43bc690a0182e77de38696f79 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni <6173598+dpschen@users.noreply.github.com> Date: Tue, 1 Jul 2025 20:55:58 +0200 Subject: [PATCH] ci: remove concurrency from test workflow (#863) --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e666b9bbe..f7e854696 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,14 @@ on: branches: - main +concurrency: + # main merges use a unique run_id so they don't cancel each other + # other branches or PRs share a group to auto-cancel old runs + group: ${{ github.ref == 'refs/heads/main' && + format('{0}-{1}', github.workflow, github.run_id) || + format('{0}-{1}', github.workflow, github.event.pull_request.number || github.ref) }} + cancel-in-progress: true + jobs: test: name: Test