Set explicit supported Copilot model for GitHub Guard Coverage Checker#7699
Merged
Conversation
Copilot
AI
changed the title
[WIP] Fix GitHub Guard Coverage Checker model configuration
Set explicit supported Copilot model for GitHub Guard Coverage Checker
Jun 18, 2026
Contributor
There was a problem hiding this comment.
✅ Ready to approve
The change is narrowly scoped to workflow configuration, is internally consistent across source + lock, and directly addresses the reported non-transient model-selection failure.
Note: this review does not count toward required approvals for merging.
Pull request overview
This PR fixes the scheduled GitHub Guard Coverage Checker (MCP + CLI) workflow’s agent step failing due to unsupported/invalid model selection by pinning the workflow to a known supported Copilot model.
Changes:
- Updated the workflow frontmatter to use an explicit
engineobject and setmodel: gpt-5.4. - Updated the compiled lock workflow to align with the frontmatter change, including setting
GH_AW_INFO_MODELandCOPILOT_MODELtogpt-5.4and refreshing thefrontmatter_hash.
File summaries
| File | Description |
|---|---|
.github/workflows/github-mcp-guard-coverage-checker.md |
Switches engine from scalar to object and pins the Copilot model to gpt-5.4 in source frontmatter. |
.github/workflows/github-mcp-guard-coverage-checker.lock.yml |
Aligns the compiled workflow with the pinned model by setting runtime env vars to gpt-5.4 and updating metadata hashes. |
Copilot's findings
- Files reviewed: 2/2 changed files
- Comments generated: 0
Note
Your feedback helps us improve the quality of this feature.
Please use 👍 or 👎 to tell us whether this assessment is correct.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This was referenced Jun 18, 2026
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 scheduled GitHub Guard Coverage Checker (MCP + CLI) workflow was failing in the agent step due to an unsupported model configuration (
400 The requested model is not supported). This change pins the workflow to a supported Copilot model to prevent non-transient model-selection failures.Workflow frontmatter update
.github/workflows/github-mcp-guard-coverage-checker.md.gpt-5.4for deterministic model selection.Compiled lock alignment
.github/workflows/github-mcp-guard-coverage-checker.lock.ymlto match the source workflow change:GH_AW_INFO_MODEL: gpt-5.4COPILOT_MODEL: gpt-5.4frontmatter_hashmetadata to stay in sync with the.mdworkflow.Example of the effective source change: