Show CI, CD and Release in the Actions tab - #4
Merged
Conversation
The `name:` field is what the Actions tab lists, and it was the lowercase filename -- so the sidebar read `ci`, `cd`, `release`, which looks like a typo rather than a convention. Only the display name changes. The job key stays lowercase: it is a YAML identifier, and with one job per workflow a `name:` override on it would only repeat the title directly above it. Co-Authored-By: Claude Opus 5 (1M context) <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.
The
name:field is what the Actions tab lists, and it was set to the lowercase filename — so the sidebar readci,cd,release, which looks like a typo rather than a convention.Only the display name changes. Nothing about what runs, when, or in what order.
The job key stays lowercase
jobs.ci:/jobs.cd:/jobs.release:are unchanged, so the check name on a pull request still reads lowercase. That's deliberate — they're YAML identifiers, and with one job per workflow aname: CIoverride on the job would just repeat the title directly above it.Applied across all 13 repos and 20 workflow files in one pass, so the tab reads the same everywhere.
🤖 Generated with Claude Code