Provision Go for all serena-go.md consumers, not just Linter Miner - #53383
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix provision of Go for all serena-go.md consumers
Provision Go for all serena-go.md consumers, not just Linter Miner
Aug 17, 2026
pelikhan
marked this pull request as ready for review
August 17, 2026 13:11
Contributor
|
Great work What looks good:
This is well-targeted and focused. Ready for review! 🚀
|
Contributor
There was a problem hiding this comment.
Pull request overview
Centralizes Go provisioning for Serena’s Go LSP so consuming workflows initialize semantic analysis successfully.
Changes:
- Adds shared Go setup and verification steps.
- Removes Linter Miner’s duplicate setup.
- Regenerates 16 direct consumer workflows.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/shared/mcp/serena-go.md |
Adds shared Go provisioning. |
.github/workflows/linter-miner.md |
Removes duplicate Go setup. |
.github/workflows/archie.lock.yml |
Regenerates workflow with Go setup. |
.github/workflows/cloclo.lock.yml |
Regenerates workflow with Go setup. |
.github/workflows/daily-function-namer.lock.yml |
Regenerates workflow with Go setup. |
.github/workflows/developer-docs-consolidator.lock.yml |
Regenerates workflow with Go setup. |
.github/workflows/glossary-maintainer.lock.yml |
Regenerates workflow with Go setup. |
.github/workflows/linter-miner.lock.yml |
Updates generated metadata. |
.github/workflows/mcp-inspector.lock.yml |
Adds Go setup and changes strict-mode output. |
.github/workflows/purelock.lock.yml |
Regenerates workflow with Go setup. |
.github/workflows/sergo.lock.yml |
Regenerates workflow with Go setup. |
.github/workflows/smoke-codex.lock.yml |
Regenerates workflow with Go setup. |
.github/workflows/smoke-copilot-aoai-apikey.lock.yml |
Regenerates workflow with Go setup. |
.github/workflows/smoke-copilot-aoai-entra.lock.yml |
Regenerates workflow with Go setup. |
.github/workflows/smoke-copilot-arm.lock.yml |
Regenerates workflow with Go setup. |
.github/workflows/smoke-copilot.lock.yml |
Regenerates workflow with Go setup. |
.github/workflows/terminal-stylist.lock.yml |
Regenerates workflow with Go setup. |
.github/workflows/typist.lock.yml |
Regenerates workflow with Go setup. |
Review details
- Files reviewed: 18/18 changed files
- Comments generated: 2
- Review effort level: Balanced
| GH_AW_INFO_CACHE_MEMORY: "true" | ||
| GH_AW_INFO_FRONTMATTER_EMOJI: "🔍" | ||
| GH_AW_COMPILED_STRICT: "false" | ||
| GH_AW_COMPILED_STRICT: "true" |
Comment on lines
+21
to
+23
| pre-agent-steps: | ||
| - name: Setup Go | ||
| uses: actions/setup-go@v7.0.0 |
Copilot AI
added a commit
that referenced
this pull request
Aug 17, 2026
…53383) Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.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.
serena-go.md(Serena's Go LSP) is imported by 16 workflows, but onlylinter-miner.mdcarried apre-agent-stepsworkaround installing Go before Serena startup. Every other consumer hits the LSP init failure (Go is not installed), forcing the agent to fall back to slow manual grep/awk analysis and burn through its AI credit budget — Typist just hit this exact failure.Changes
actions/setup-go+go versionpreflight guard fromlinter-miner.mdinto the shared.github/workflows/shared/mcp/serena-go.mdimport, so it's applied once for all 16 consumers (importedpre-agent-stepsare merged into the consuming workflow).linter-miner.md, keeping only its workflow-specific preload step..lock.ymlfiles: archie, cloclo, daily-function-namer, developer-docs-consolidator, glossary-maintainer, linter-miner, mcp-inspector, purelock, sergo, smoke-codex, smoke-copilot-aoai-apikey, smoke-copilot-aoai-entra, smoke-copilot-arm, smoke-copilot, terminal-stylist, typist.