Add 'make recompile' to copilot agent setup workflow#1551
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add make recompile to copilot agent setup workflow
Add 'make recompile' to copilot agent setup workflow
Oct 11, 2025
pelikhan
approved these changes
Oct 11, 2025
Contributor
|
Agentic Changeset Generator triggered by this pull request |
Copilot AI
added a commit
that referenced
this pull request
Mar 23, 2026
Fixes #1551 - Create .github/workflows/shared/pr-code-review-config.md with shared config: cache-memory, github toolsets [pull_requests, repos], create-pull-request-review-comment side RIGHT, and submit-pull-request-review max 1 - Update grumpy-reviewer.md to import shared component, removing duplicate config - Update pr-nitpick-reviewer.md similarly - Update security-review.md similarly - Regenerate lock files for all three workflows Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> Agent-Logs-Url: https://github.com/github/gh-aw/sessions/98001808-6936-4837-9236-331ed885a406
pelikhan
added a commit
that referenced
this pull request
Mar 23, 2026
* Initial plan * feat: extract PR Code Review base configuration into shared component Fixes #1551 - Create .github/workflows/shared/pr-code-review-config.md with shared config: cache-memory, github toolsets [pull_requests, repos], create-pull-request-review-comment side RIGHT, and submit-pull-request-review max 1 - Update grumpy-reviewer.md to import shared component, removing duplicate config - Update pr-nitpick-reviewer.md similarly - Update security-review.md similarly - Regenerate lock files for all three workflows Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> Agent-Logs-Url: https://github.com/github/gh-aw/sessions/98001808-6936-4837-9236-331ed885a406 --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> 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.
Summary
Adds a
make recompilestep to the.github/workflows/copilot-setup-steps.ymlworkflow to ensure workflow files are properly compiled during Copilot agent setup.Background
The copilot-setup-steps.yml workflow was introduced to mirror the CI workflow's build job setup steps, providing Copilot agents with a fully configured development environment. However, it was missing the
make recompilestep that exists in the CI build job.Changes
copilot-setup-steps.ymlmake recompilewithcontinue-on-error: trueto maintain consistency with other setup stepsmake recompile(Copilot CLI version bump to 0.0.339 and Claude CLI version bump to 2.0.14, plus MCP schema updates)Why This Matters
According to AGENTS.md documentation:
The
make recompilecommand:.lock.ymlcounterpartsBy including this step in the setup, Copilot agents will have a development environment that truly mirrors the CI build job, with all workflows properly compiled and ready for agent operations.
Testing
actionlintmake buildandmake recompilerun successfullyOriginal prompt
💡 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.