From 6d09335c56acf892c18e5261370b3dee250e6817 Mon Sep 17 00:00:00 2001 From: Wouter Born Date: Thu, 26 Jun 2025 17:18:19 +0200 Subject: [PATCH] Configure concurrency to cancel "In progress" actions The styfle/cancel-workflow-action, which we use in other repositories, is no longer neccessary to accomplish this nowadays. See: https://github.com/styfle/cancel-workflow-action --- .github/workflows/ci_cd.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 5cd6196..28468df 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -10,6 +10,10 @@ on: - 'main' workflow_dispatch: +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + env: # Hosted GitHub runners have 7 GB of memory available, let's use 6 GB NODE_OPTIONS: --max-old-space-size=6144