From 411cd2df66bf8ccc936255576e626c0df9c4d36c Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Sun, 8 Feb 2026 18:20:48 +0100 Subject: [PATCH] Remove tag trigger from mark-stable workflow Stop running the mark-stable workflow on v* tag pushes so it executes only on branch updates. This prevents duplicate or unintended runs after version tags are created as part of the release process. https://chatgpt.com/share/6988bef0-1a0c-800f-93df-7a6c1bdc0331 --- .github/workflows/mark-stable.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/mark-stable.yml b/.github/workflows/mark-stable.yml index 74b4499..d9db890 100644 --- a/.github/workflows/mark-stable.yml +++ b/.github/workflows/mark-stable.yml @@ -4,9 +4,6 @@ on: push: branches: - main # still run tests for main - tags: - - 'v*' # run tests for version tags (e.g. v0.9.1) - jobs: test-unit: uses: ./.github/workflows/test-unit.yml