-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Labels
ai-generatedbugSomething isn't workingSomething isn't workingdependenciesPull requests that update a dependency filePull requests that update a dependency fileplan
Description
Objective
Ensure all required build tools are available in the Tidy workflow environment to eliminate recurring build tool missing errors.
Context
The Tidy workflow repeatedly fails due to missing build tools: make, go, npm, and golangci-lint. These tools are needed for code formatting, linting, and building operations.
Approach
- Locate the Tidy workflow file (
.github/workflows/tidy.mdor similar) - Add runtime package dependencies:
runtime: packages: - make - golang - npm - golangci-lint
- Alternatively, use setup actions if available in the workflow
- Recompile with
make recompile - Trigger a test run to verify tools are available
Files to Modify
.github/workflows/tidy.md(or equivalent workflow file)
Acceptance Criteria
- Workflow declares all required build tools in runtime.packages
- Workflow compiles without errors (
make recompile) - Test run successfully executes make/go/npm/golangci-lint commands
- No "command not found" errors in workflow logs
- Tidy operations complete successfully
Related to [plan] Improve agent health and reduce firewall denials #7658
AI generated by Plan Command for discussion #7638
Copilot
Metadata
Metadata
Labels
ai-generatedbugSomething isn't workingSomething isn't workingdependenciesPull requests that update a dependency filePull requests that update a dependency fileplan