{{ message }}
fix(nightly-schema-updater): switch model from deprecated claude-sonnet-4.6 to gpt-5.4#7682
Merged
Merged
Conversation
Copilot
AI
changed the title
[WIP] Fix nightly schema updater configuration issue
fix(nightly-schema-updater): switch model from deprecated claude-sonnet-4.6 to gpt-5.4
Jun 17, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the Nightly Schema Updater agentic workflow to avoid failures caused by a deprecated Copilot model name by pinning and defaulting the workflow’s model to gpt-5.4.
Changes:
- Added an explicit
engine:configuration in the source workflow (.md) to pinmodel: gpt-5.4. - Updated the compiled lock workflow (
.lock.yml) to change the fallback model fromclaude-sonnet-4.6togpt-5.4for both info reporting and Copilot execution.
Show a summary per file
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 2/2 changed files
- Comments generated: 0
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 Nightly Schema Updater (and all other workflows compiled with gh-aw v0.79.6) hard-coded
claude-sonnet-4.6as the fallback model. The Copilot API stopped accepting this model name, causing a400 The requested model is not supportedfailure. gh-aw's own workflows have since moved togpt-5.4with Copilot CLI v1.0.63.Changes
nightly-schema-updater.md— Added explicitengine:block pinningmodel: gpt-5.4so the source is authoritative and recompilation won't regress.nightly-schema-updater.lock.yml— Updated both model fallback references fromclaude-sonnet-4.6→gpt-5.4:gpt-5.4is the first entry in the AWF proxy'sagentmodel resolution list and is the current default in gh-aw's own compiled workflows. The lock file'sfrontmatter_hashwill be stale until the nightly-workflow-compiler runs a fullgh aw upgrade; this does not block execution.