From 268b9a0e44c3249f873f1499ffd7f18b3020583f Mon Sep 17 00:00:00 2001 From: Hadrien Grasland Date: Thu, 28 May 2026 14:03:37 +0200 Subject: [PATCH 1/2] Simplify concurrency group in GitHub workflow --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4326a30..8db68dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ on: # Cancel existing jobs on new pushes to the same branch concurrency: - group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true env: From a7fafd9512d31a1dcf6514a46cab3cca80d13ce8 Mon Sep 17 00:00:00 2001 From: Hadrien Grasland Date: Thu, 28 May 2026 14:04:27 +0200 Subject: [PATCH 2/2] Test if it works --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8db68dd..61aae58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ on: schedule: - cron: '0 0 7/15 * *' -# Cancel existing jobs on new pushes to the same branch +# Cancel previous jobs on new pushes to the same branch concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true