Fix hourly CI cleaner workflow build configuration#7261
Closed
Copilot wants to merge 2 commits intoci-cleaner/architecture-issue-20251222-140940-4468a3242518d3eefrom
Closed
Fix hourly CI cleaner workflow build configuration#7261Copilot wants to merge 2 commits intoci-cleaner/architecture-issue-20251222-140940-4468a3242518d3eefrom
Copilot wants to merge 2 commits intoci-cleaner/architecture-issue-20251222-140940-4468a3242518d3eefrom
Conversation
- Remove docs/troubleshooting/ci-cleaner-architecture.md as requested - Fix hourly-ci-cleaner.md workflow by aligning with ci.yml build job pattern: - Remove manual 'make install' step (make is already available) - Pin GitHub Actions to specific SHAs per security best practices - Replace 'make deps-dev' with 'make build' to build the binary - Reorder Node.js setup before Go setup to match ci.yml pattern - Workflow now properly sets up the build environment before agent execution Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix CI cleaner architecture limitation
Fix hourly CI cleaner workflow build configuration
Dec 22, 2025
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 hourly CI cleaner workflow had incorrect build setup steps that didn't align with the working pattern in
ci.yml.Changes:
makeinstallation (already available in GitHub Actions runners)ci.yml:actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f(v6.1.0)actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c(v6.1.0)make deps-dev(installs linter tooling) withmake build(builds the binary)The workflow now follows the proven
ci.ymlbuild job pattern, ensuring build tools are available to the agent when it runsmake fmt,make lint,make test-unit, andmake recompile.💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.