From d13476ebe120f088e8a04d26eebaec2819917553 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Wed, 15 Jul 2026 03:19:36 -0400 Subject: [PATCH] Fix workflow tag concurrency checks Co-Authored-By: Chris Rackauckas --- .github/workflows/Documentation.yml | 2 +- .github/workflows/Downstream.yml | 2 +- .github/workflows/ReleaseTest.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Documentation.yml b/.github/workflows/Documentation.yml index ab89539cba..12e41c4e8a 100644 --- a/.github/workflows/Documentation.yml +++ b/.github/workflows/Documentation.yml @@ -13,7 +13,7 @@ concurrency: # Skip intermediate builds: always, but for the master branch. # Cancel intermediate builds: always, but for the master branch. group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.refs != 'refs/tags/*'}} + cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.ref_type != 'tag' }} jobs: build: diff --git a/.github/workflows/Downstream.yml b/.github/workflows/Downstream.yml index b43163e051..bc090f33b2 100644 --- a/.github/workflows/Downstream.yml +++ b/.github/workflows/Downstream.yml @@ -12,7 +12,7 @@ concurrency: # Skip intermediate builds: always, but for the master branch and tags. # Cancel intermediate builds: always, but for the master branch and tags. group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.refs != 'refs/tags/*' }} + cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.ref_type != 'tag' }} jobs: test: diff --git a/.github/workflows/ReleaseTest.yml b/.github/workflows/ReleaseTest.yml index c5d0ff5b24..da08fadd37 100644 --- a/.github/workflows/ReleaseTest.yml +++ b/.github/workflows/ReleaseTest.yml @@ -12,7 +12,7 @@ concurrency: # Skip intermediate builds: always, but for the master branch and tags. # Cancel intermediate builds: always, but for the master branch and tags. group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.refs != 'refs/tags/*' }} + cancel-in-progress: ${{ github.ref != 'refs/heads/master' && github.ref_type != 'tag' }} jobs: test: