From 6eb4580a2ba28635def0b40e524dca2078753d73 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 3 Aug 2025 20:35:29 -0400 Subject: [PATCH] chore: comment out bump tags workflow to prevent breaking changes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - v2 is a breaking version requiring setup-docker-builder to be called first - Commenting out workflow to prevent accidentally bumping v1 tags to breaking changes - Workflow kept as reference for future tag bumping procedures 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/bump_tags_to_master.yaml | 49 ++++++++++++---------- 1 file changed, 27 insertions(+), 22 deletions(-) diff --git a/.github/workflows/bump_tags_to_master.yaml b/.github/workflows/bump_tags_to_master.yaml index 88e54f8..d0c4d9b 100644 --- a/.github/workflows/bump_tags_to_master.yaml +++ b/.github/workflows/bump_tags_to_master.yaml @@ -1,23 +1,28 @@ -name: Bump Tags to master +# IMPORTANT: This workflow is commented out to prevent breaking existing customer workflows. +# v2 is a breaking version as it relies on setup-docker-builder being called before this action. +# To avoid bumping older version tags to the head of master and breaking existing customer workflows, +# we will keep this workflow only as a reference on how to bump tags. -on: - workflow_dispatch: - -jobs: - bump-tags: - runs-on: blacksmith - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Update v1, v1.0.0-beta tags - run: | - git config user.name github-actions[bot] - git config user.email github-actions[bot]@users.noreply.github.com - git tag -fa v1.2 -m "Update v1.2 tag to latest commit on master" - git tag -fa v1.1 -m "Update v1.1 tag to latest commit on master" - git tag -fa v1 -m "Update v1 tag to latest commit on master" - git tag -fa v1.0.0-beta -m "Update v1.0.0-beta tag to latest commit on master" - git push origin v1.2 v1.1 v1 v1.0.0-beta --force +# name: Bump Tags to master +# +# on: +# workflow_dispatch: +# +# jobs: +# bump-tags: +# runs-on: blacksmith +# steps: +# - name: Checkout code +# uses: actions/checkout@v4 +# with: +# fetch-depth: 0 +# +# - name: Update v1, v1.0.0-beta tags +# run: | +# git config user.name github-actions[bot] +# git config user.email github-actions[bot]@users.noreply.github.com +# git tag -fa v1.2 -m "Update v1.2 tag to latest commit on master" +# git tag -fa v1.1 -m "Update v1.1 tag to latest commit on master" +# git tag -fa v1 -m "Update v1 tag to latest commit on master" +# git tag -fa v1.0.0-beta -m "Update v1.0.0-beta tag to latest commit on master" +# git push origin v1.2 v1.1 v1 v1.0.0-beta --force \ No newline at end of file