From 324404f780154bdb8d5fa74a26402cadd069e257 Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Sat, 17 Jan 2026 13:03:04 +0100 Subject: [PATCH] fix: cancel multiple in progress tests (#6757) --- .github/workflows/auto-test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/auto-test.yml b/.github/workflows/auto-test.yml index dbeea30c4..7186e01aa 100644 --- a/.github/workflows/auto-test.yml +++ b/.github/workflows/auto-test.yml @@ -1,5 +1,9 @@ name: Auto Test +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-server + cancel-in-progress: true + on: push: branches: [master, 1.23.X, 3.0.0]