fix: Copy gh-aw binary to /opt/gh-aw for agentic-workflows MCP server containerization#10494
Merged
Conversation
… containerization When using `agentic-workflows: true` in a workflow, the MCP server was failing to initialize because the gh-aw binary was installed via `gh extension install` but not copied to the location expected by the MCP container configuration (/opt/gh-aw/gh-aw). This fix adds a step after extension installation to copy the binary to the expected location, enabling the containerized MCP server to successfully start. Fixes: https://github.com/githubnext/gh-aw/actions/runs/21100950541 Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Debug agentic workflow to fix auth issue
fix: Copy gh-aw binary to /opt/gh-aw for agentic-workflows MCP server containerization
Jan 17, 2026
Contributor
|
🎉 Yo ho ho! Changeset Generator found the treasure and completed successfully! ⚓💰 |
Contributor
|
✨ The prophecy is fulfilled... Smoke Codex has completed its mystical journey. The stars align. 🌟 |
Contributor
|
🎬 THE END — Smoke Claude MISSION: ACCOMPLISHED! The hero saves the day! ✨ |
Contributor
|
📰 DEVELOPING STORY: Smoke Copilot reports failed. Our correspondents are investigating the incident... |
Contributor
|
Smoke test results:
|
Contributor
Claude Smoke Test ResultsLast 2 Merged PRs:
Test Results:
Status: PASS
|
This was referenced Jan 17, 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.
The
agentic-workflows: trueMCP server was failing to initialize with EOF errors because the gh-aw binary wasn't being copied to/opt/gh-aw/gh-awwhere the container mount expects it.Changes
gh extension install, copy the binary to/opt/gh-aw/gh-awfor container accessExample
The install step now includes:
Original prompt
💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.
Changeset
gh-awbinary to/opt/gh-aw/gh-awduring MCP server setup to fix EOF errors when the agentic-workflows MCP server container mount expects the binary to be present.