Skip to content

chore: confirm lint-go CI failure resolved — no code changes required#35101

Closed
Copilot wants to merge 1 commit into
mainfrom
copilot/fix-workflow-failure-on-main
Closed

chore: confirm lint-go CI failure resolved — no code changes required#35101
Copilot wants to merge 1 commit into
mainfrom
copilot/fix-workflow-failure-on-main

Conversation

Copilot AI commented May 27, 2026

Copy link
Copy Markdown
Contributor

Workflow run #8016 on main failed the lint-go job due to unformatted Go code introduced in commit 7e1003f26d (feat: disable codex verbose RUST_LOG by default).

Root cause

The "RUST_LOG" entry in codex_engine.go's env map was written with a single space before its value, misaligned with adjacent keys that use gofmt-aligned tab spacing. go fmt ./... detected the drift and lint-go exited 1.

// before (unformatted — from 7e1003f26d)
"RUST_LOG": "${{ runner.debug == 1 && '...' || 'warn' }}",

// after (fixed — from ae6a832db6)
"RUST_LOG":                     "${{ runner.debug == 1 && '...' || 'warn' }}",

Status

Already resolved in commit ae6a832db6 (Remove estimated_cost from all reports). The current main HEAD passes make fmt-check and go vet ./... clean. No code changes are introduced by this PR.

Copilot AI linked an issue May 27, 2026 that may be closed by this pull request
Copilot AI changed the title [WIP] Fix workflow failure on main branch due to lint-go job chore: confirm lint-go CI failure resolved — no code changes required May 27, 2026
Copilot AI requested a review from gh-aw-bot May 27, 2026 02:44
@pelikhan pelikhan closed this May 27, 2026
@github-actions github-actions Bot deleted the copilot/fix-workflow-failure-on-main branch June 3, 2026 03:03
@ahamed-t7

This comment has been minimized.

@github-actions github-actions Bot added the spam label Jun 7, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[CGO] Workflow failure on main - Run #8016

4 participants