From 886583d6b63ae6f63f2e4ff358573b52b366e25e Mon Sep 17 00:00:00 2001 From: Steve Gilham Date: Tue, 4 Jul 2023 08:47:47 +0100 Subject: [PATCH] For me, one at a time globally should do OK. --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 66894e06..5dd5ab26 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,7 +17,8 @@ on: concurrency: # github.workflow: name of the workflow # github.event.pull_request.number || github.ref: pull request number or branch name if not a pull request - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + group: ${{ github.workflow }} + #-${{ github.event.pull_request.number || github.ref }} # Cancel in-progress runs when a new workflow with the same group name is triggered cancel-in-progress: true