chore: comment out bump tags workflow to prevent breaking changes

- 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 <noreply@anthropic.com>
This commit is contained in:
Claude 2025-08-03 20:35:29 -04:00
parent 7bff2036c1
commit 6eb4580a2b

View File

@ -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: # name: Bump Tags to master
workflow_dispatch: #
# on:
jobs: # workflow_dispatch:
bump-tags: #
runs-on: blacksmith # jobs:
steps: # bump-tags:
- name: Checkout code # runs-on: blacksmith
uses: actions/checkout@v4 # steps:
with: # - name: Checkout code
fetch-depth: 0 # uses: actions/checkout@v4
# with:
- name: Update v1, v1.0.0-beta tags # fetch-depth: 0
run: | #
git config user.name github-actions[bot] # - name: Update v1, v1.0.0-beta tags
git config user.email github-actions[bot]@users.noreply.github.com # run: |
git tag -fa v1.2 -m "Update v1.2 tag to latest commit on master" # git config user.name github-actions[bot]
git tag -fa v1.1 -m "Update v1.1 tag to latest commit on master" # git config user.email github-actions[bot]@users.noreply.github.com
git tag -fa v1 -m "Update v1 tag to latest commit on master" # git tag -fa v1.2 -m "Update v1.2 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 tag -fa v1.1 -m "Update v1.1 tag to latest commit on master"
git push origin v1.2 v1.1 v1 v1.0.0-beta --force # 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