Append Containerized to generated smoke workflow names#65
Merged
Conversation
Copilot created this pull request from a session on behalf of
davidslater
May 13, 2026 19:54
View session
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes an Actions UX issue where containerized smoke workflows were indistinguishable from their base smoke workflows by updating the generated container sibling workflows to include a Containerized suffix in the top-level workflow name and run-name.
Changes:
- Updated the container sibling workflow generator to use
“… Containerized”as the sibling display name. - Regenerated the three
smoke-*-container.lock.ymlworkflows with updatednameandrun-name. - Ensured containerized runs appear as distinct workflows in the GitHub Actions UI.
Show a summary per file
| File | Description |
|---|---|
| scripts/create-threat-detection-sibling-workflows.py | Updates the generator’s per-engine sibling display name to include Containerized. |
| .github/workflows/smoke-copilot-container.lock.yml | Regenerated containerized Copilot smoke lock workflow with updated name/run-name. |
| .github/workflows/smoke-claude-container.lock.yml | Regenerated containerized Claude smoke lock workflow with updated name/run-name. |
| .github/workflows/smoke-codex-container.lock.yml | Regenerated containerized Codex smoke lock workflow with updated name/run-name. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 4/4 changed files
- Comments generated: 4
Comment on lines
21
to
25
| ENGINES = { | ||
| "smoke-copilot.lock.yml": ("copilot", "Smoke Copilot"), | ||
| "smoke-claude.lock.yml": ("claude", "Smoke Claude"), | ||
| "smoke-codex.lock.yml": ("codex", "Smoke Codex"), | ||
| "smoke-copilot.lock.yml": ("copilot", "Smoke Copilot Containerized"), | ||
| "smoke-claude.lock.yml": ("claude", "Smoke Claude Containerized"), | ||
| "smoke-codex.lock.yml": ("codex", "Smoke Codex Containerized"), | ||
| } |
| # - node:lts-alpine@sha256:d1b3b4da11eefd5941e7f0b9cf17783fc99d9c6fc34884a665f40a06dbdfc94f | ||
|
|
||
| name: "Smoke Copilot" | ||
| name: "Smoke Copilot Containerized" |
| # - node:lts-alpine@sha256:d1b3b4da11eefd5941e7f0b9cf17783fc99d9c6fc34884a665f40a06dbdfc94f | ||
|
|
||
| name: "Smoke Claude" | ||
| name: "Smoke Claude Containerized" |
| # - node:lts-alpine@sha256:d1b3b4da11eefd5941e7f0b9cf17783fc99d9c6fc34884a665f40a06dbdfc94f | ||
|
|
||
| name: "Smoke Codex" | ||
| name: "Smoke Codex Containerized" |
This was referenced May 13, 2026
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.
Bug Fix
What was the bug?
Containerized AW smoke lock workflows kept the same top-level workflow names as their source workflows, making base and containerized runs indistinguishable in Actions.
How did you fix it?
Generator update
scripts/create-threat-detection-sibling-workflows.pyso generated container siblings appendContainerizedtonameandrun-name.Regenerated lock workflows
Smoke Copilot ContainerizedSmoke Claude ContainerizedSmoke Codex Containerized