fix: give publish-latest its own workflow name - #36
Merged
Conversation
publish-latest.yaml declared 'name: publish-stable', so both publish workflows appeared under the same name in the Actions UI and API - the workflow listing showed two 'publish-stable' entries, one active and one disabled_inactivity, with no way to tell which file was which. Its header comment was copy-pasted from publish-stable.yaml too, and described triggering on tags and building a 'stable' image. It triggers on the 'staging' branch and builds 'latest'. The job key 'call-build-without-push' was likewise inaccurate - it passes image-push: true. Also correct the 'stabkle' typo in publish-stable.yaml's header while here, and say which branch it fires on. No behaviour change: triggers, inputs and secrets are untouched. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
publish-latest.yamldeclaredname: publish-stable, so both publish workflows appeared under the same name in the Actions UI and API:Two identically-named entries, one active and one disabled, with no way to tell which file each corresponds to.
Changes
.github/workflows/publish-latest.yamlname: publish-stable→name: publish-latestpublish-stable.yamland wrong on both counts. It triggers on thestagingbranch and buildslatest.call-build-without-push→call-build-with-push; it passesimage-push: true, so the old name said the opposite of what it does..github/workflows/publish-stable.yamlstabkletypo in the header and names the branch it fires on.No behaviour change
on:triggers,image-tag,image-pushandsecrets: inheritare all untouched. Renaming a workflow does reset its run history in the Actions UI, which costs nothing here — both workflows currently reporttotal_count=0runs.All seven workflow names are now unique:
build,build-and-push,build-all-with-push-option,publish-latest,publish-stable,publish-tag,test.🤖 Generated with Claude Code