From ef519531a6a62bd3175b2669fab54bd4dc50d746 Mon Sep 17 00:00:00 2001 From: jdx <216188+jdx@users.noreply.github.com> Date: Tue, 30 Dec 2025 10:29:04 -0800 Subject: [PATCH] fix(ci): exclude subcrate tags from release workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The release workflow was triggering on subcrate tags like `vfox-v*` and `aqua-registry-v*` because the pattern `v*` matches any tag starting with `v`. Changed pattern from `v*` to `v[0-9]*` to only match mise release tags like `v2025.12.13`. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9525e43c06..94fedf097b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,7 +2,7 @@ name: release on: push: - tags: ["v*"] + tags: ["v[0-9]*"] pull_request: branches: ["main"] workflow_dispatch: