fix(step-names): align Set up Go, Install UV, and Upload source inconsistencies#17386
Merged
fix(step-names): align Set up Go, Install UV, and Upload source inconsistencies#17386
Conversation
… data Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update step names for consistency across workflows
fix(step-names): align Set up Go, Install UV, and Upload source inconsistencies
Feb 21, 2026
pelikhan
approved these changes
Feb 21, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Aligns several GitHub Actions step names across source workflow templates and their compiled .lock.yml outputs to match existing naming conventions and avoid duplicate/near-duplicate step labels.
Changes:
- Renamed the Go setup step in
daily-syntax-error-qualityfrom “Set up Go” to “Setup Go” (source + lock). - Renamed the uv install step from “Install UV (Python package manager)” to “Install uv” (shared setup steps + dependent lock).
- Standardized the artifact upload step name to “Upload source files and data” in the shared trending charts import and all affected compiled lock workflows.
Reviewed changes
Copilot reviewed 10 out of 11 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/daily-syntax-error-quality.md | Renames the Go setup step to “Setup Go”. |
| .github/workflows/daily-syntax-error-quality.lock.yml | Recompiled output reflecting the updated “Setup Go” step name and metadata hash. |
| .github/workflows/copilot-setup-steps.yml | Renames uv install step to “Install uv” for consistent tool casing and step naming style. |
| .github/workflows/daily-copilot-token-report.lock.yml | Recompiled output reflecting “Install uv” from imported setup steps. |
| .github/workflows/shared/trending-charts-simple.md | Renames upload step to “Upload source files and data” to match shared naming. |
| .github/workflows/audit-workflows.lock.yml | Recompiled output reflecting the updated upload step name and metadata hash. |
| .github/workflows/daily-firewall-report.lock.yml | Recompiled output reflecting the updated upload step name and metadata hash. |
| .github/workflows/daily-performance-summary.lock.yml | Recompiled output reflecting the updated upload step name and metadata hash. |
| .github/workflows/portfolio-analyst.lock.yml | Recompiled output reflecting the updated upload step name and metadata hash. |
| .github/workflows/prompt-clustering-analysis.lock.yml | Recompiled output reflecting the updated upload step name and metadata hash. |
| .github/workflows/stale-repo-identifier.lock.yml | Recompiled output reflecting the updated upload step name and metadata hash. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Three step name inconsistencies across workflow lock files: one capitalization outlier against ~15 conforming workflows, one incorrect tool casing with a non-standard parenthetical, and a divergence between two shared imports.
Changes
daily-syntax-error-quality.md—Set up Go→Setup Go(sole outlier vs. project convention)copilot-setup-steps.yml—Install UV (Python package manager)→Install uv(official lowercase name; no otherInstall *step uses a parenthetical descriptor)shared/trending-charts-simple.md—Upload source and data→Upload source files and data(aligns with the identical step inshared/python-dataviz.md)Recompiled all 8 affected lock files:
daily-syntax-error-quality,daily-copilot-token-report,audit-workflows,daily-firewall-report,daily-performance-summary,portfolio-analyst,prompt-clustering-analysis,stale-repo-identifier.Warning
Firewall rules blocked me from connecting to one or more addresses (expand for details)
I tried to connect to the following addresses, but was blocked by firewall rules:
https://api.github.com/repos/actions/setup-go/git/ref/tags/v5/usr/bin/gh gh api /repos/actions/setup-go/git/ref/tags/v5 --jq .object.sha /home/REDACTED/work/gh-aw/gh-aw/.github/workflows/breaking-change-checker.md /home/REDACTED/work/gh-aw/gh-aw/.github/workflows/changeset.md /home/REDACTED/work/gh-aw/gh-aw/.github/workflows/chroma-issue-indexer.md /home/REDACTED/work/gh-aw/gh-aw/.github/workflows/ci-coach.md /home/REDACTED/work/gh-aw/gh-aw/.github/workflows/ci-doctor.md /home/REDACTED/work/gh-aw/gh-aw/.github/workflows/claude-code-user-docs-review.md /home/REDACTED/work/gh-aw/gh-aw/.github/workflows/cli-consistency-checker.md(http block)If you need me to access, download, or install something from one of these locations, you can either:
Original prompt
This section details on the original issue you should resolve
<issue_title>[step-names] Align step names: fix "Set up Go" outlier, "Install UV" terminology, and shared upload inconsistency</issue_title>
<issue_description>## Step Name Alignment Issues
Found across:
.github/workflows/daily-syntax-error-quality.lock.yml,.github/workflows/daily-copilot-token-report.lock.yml, and shared imports.Summary
Three distinct naming inconsistencies were identified across the workflow lock files: one capitalization outlier for a GitHub action, one incorrect tool name capitalization with a non-standard parenthetical, and an inconsistency between two shared import components.
Issues Identified
1. [High Priority] Inconsistent Naming: "Set up Go" → "Setup Go"
Current step name:
daily-syntax-error-quality.lock.yml(source:.github/workflows/daily-syntax-error-quality.md, line 35):Set up GoIssue:
Every other workflow in the repository uses
Setup Go(one word) orSetup Go for CLI buildwhen callingactions/setup-go. Thedaily-syntax-error-quality.mdworkflow is the only one using the two-word formSet up Go, which is an outlier against the established project convention.Count: 1 outlier vs. ~15 workflows using
Setup Go/Setup Go for CLI buildSuggested improvement:
Set up Go→Setup Go2. [High Priority] Terminology Mismatch: "Install UV (Python package manager)" → "Install uv"
Current step name:
daily-copilot-token-report.lock.yml(source:.github/workflows/daily-copilot-token-report.md):Install UV (Python package manager)Issue:
Two problems in one step name:
uv(lowercase) by Astral, notUV. Using uppercaseUVis factually incorrect.Install *step in the repository appends a parenthetical explanation.Install GitHub Copilot CLI,Install Claude Code CLI,Install awf binary, etc. all omit parenthetical descriptions.Additionally, the only other
uvstep in the repository (mcp-inspector.lock.yml) usesSetup uv(lowercase), showing an inconsistency in both capitalization and verb choice.Suggested improvement:
Install UV (Python package manager)→Install uvcurlinstall script (not an action),Install uvis the correct imperative verb. Themcp-inspector.lock.ymlstep usesastral-sh/setup-uvaction, soSetup uvis appropriate there.3. [Medium Priority] Inconsistent Shared Import Names: "Upload source and data" vs "Upload source files and data"
Current step names:
shared/trending-charts-simple.md(line 26):Upload source and datashared/python-dataviz.md(line 68):Upload source files and dataIssue:
Two shared import files define a semantically identical step (uploading Python source files and data artifacts) with different names. Workflows that import both (e.g.
stale-repo-identifier.md) end up with both names in the same compiled lock file. The patternUpload source files and datais more descriptive and explicit — "files" clarifies what "source" refers to.Affected workflows (importing
trending-charts-simple.md):audit-workflows,daily-firewall-report,daily-performance-summary,portfolio-analyst,prompt-clustering-analysis,stale-repo-identifierSuggested improvement:
Upload source and data(inshared/trending-charts-simple.md) →Upload source files and dataAgentic Task Description
To apply these improvements:
daily-syntax-error-quality.md— Findname: Set up Goand change toname: Setup Godaily-copilot-token-report.md— Findname: Install UV (Python package manager)and change toname: Install uvshared/trending-charts-simple.md— Findname: Upload source and dataand change toname: Upload source files and datagh aw compile (workflow-name).mdto regenerate the.lock.ymlfiles.lock.ymlfiles reflect the corrected namesRelated Files
.github/workflows/daily-syntax-error-quality.md,.github/workflows/daily-copilot-token-report.md.github/workflows/shared/trending-charts-simple.md.lock.ymlfilesdocs/src/content/docs/reference/glossary.mdPriority
This issue is High Priority for items 1 and 2 (factual outlier / wrong tool capitalization) and Medium Priority for item 3 (shared import divergence).
🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.