-
Notifications
You must be signed in to change notification settings - Fork 432
fix: update pinned commit SHA in dispatch-workflow integration test to use cli-proxy #28958
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -1023,10 +1023,12 @@ func TestAddWorkflowWithDispatchWorkflowFromSharedImport(t *testing.T) { | |||||
| // workflow and the dispatch-workflow dependency are written to disk. | ||||||
| // | ||||||
| // Note: pinned to a specific commit SHA that includes strict: false in smoke-copilot.md | ||||||
| // (required since sandbox.mcp.container is now blocked in strict mode) and | ||||||
| // (required since sandbox.mcp.container is now blocked in strict mode), | ||||||
| // serena-go.md uses ./serena.md (explicitly-relative) so the fetcher correctly | ||||||
| // resolves it against shared/mcp/ rather than the top-level .github/workflows/. | ||||||
| workflowSpec := "github/gh-aw/.github/workflows/smoke-copilot.md@a4237ca" | ||||||
| // resolves it against shared/mcp/ rather than the top-level .github/workflows/, | ||||||
| // and tools.cli-proxy: true (not the deprecated mount-as-clis which was removed from | ||||||
|
||||||
| // and tools.cli-proxy: true (not the deprecated mount-as-clis which was removed from | |
| // and cli-proxy: true (not the deprecated mount-as-clis which was removed from |
Copilot
AI
Apr 28, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pinned ref uses a short (7-char) commit SHA. For long-term stability in tests, prefer pinning to a longer SHA (commonly 12+) or the full 40-char SHA to minimize the risk of future ambiguity/collision as the upstream repo grows.
| workflowSpec := "github/gh-aw/.github/workflows/smoke-copilot.md@d555622" | |
| workflowSpec := "github/gh-aw/.github/workflows/smoke-copilot.md@<FULL_40_CHARACTER_SHA_FOR_D555622>" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This dependency bump is not mentioned in the PR description, which focuses on updating the pinned workflow commit SHA for an integration test. Either include a short rationale in the PR description for this version update or move it to a separate PR to keep the change focused.