From f163b3f8fc6f9947f7ba35d290a1aad870eb7232 Mon Sep 17 00:00:00 2001 From: Francis Charette-Migneault Date: Thu, 9 Nov 2023 10:43:28 -0500 Subject: [PATCH] remove concurrency skip causing duplicate cancel working against skip-duplicate-actions --- .github/workflows/tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index beb0729..efed36f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,11 +7,12 @@ on: - release - workflow_dispatch +# handled by skip-duplicate-actions instead with more options # cancel the current workflow if another commit was pushed on the same PR or reference # uses the GitHub workflow name to avoid collision with other workflows running on the same PR/reference -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true +#concurrency: +# group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} +# cancel-in-progress: true jobs: # see: https://github.com/fkirc/skip-duplicate-actions