Use GPT-5.6 Sol and raise agentic workflow label limits - #9993
Merged
JeffreyCA merged 2 commits intoSep 11, 2026
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
|
Azure Pipelines: 22 pipeline(s) were filtered out due to trigger conditions. There may be pipelines that require an authorized user to comment /azp run to run. |
JeffreyCA
marked this pull request as ready for review
September 10, 2026 22:52
JeffreyCA
requested a review
from Daniel Jurek (danieljurek)
as a code owner
September 10, 2026 22:52
JeffreyCA
requested review from
Rick Winter (RickWinter),
Richard Park (richardpark-msft),
tg-msft and
Victor Vazquez (vhvb1989)
as code owners
September 10, 2026 22:52
|
Azure Pipelines: 22 pipeline(s) were filtered out due to trigger conditions. There may be pipelines that require an authorized user to comment /azp run to run. |
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
JeffreyCA
marked this pull request as draft
September 10, 2026 22:54
Contributor
There was a problem hiding this comment.
Copilot review overview
🔵 Needs a closer look
The regenerated pull_request_target workflow substantially changes security-sensitive runtime, telemetry, container, and threat-detection plumbing beyond the targeted configuration updates.
Review tier: Balanced
Findings: None
What changed in this PR
Configures agentic triage workflows to use GPT-5.6 Sol with medium reasoning and increases label limits.
Changes:
- Pins both workflows to
copilot/gpt-5.6-sol. - Raises issue and extension PR label limits to 10 and 25.
- Refreshes generated workflow dependencies with gh-aw v0.88.7.
| File | Description |
|---|---|
.github/workflows/issue-triage.md |
Configures the model, effort, and issue-label limit. |
.github/workflows/extension-pr-labeler.md |
Configures the model, effort, and PR-label limit. |
.github/workflows/extension-pr-labeler.lock.yml |
Regenerates the executable workflow and dependency pins. |
.github/aw/actions-lock.json |
Updates the gh-aw setup action pin. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
JeffreyCA
marked this pull request as ready for review
September 10, 2026 23:03
|
Azure Pipelines: 22 pipeline(s) were filtered out due to trigger conditions. There may be pipelines that require an authorized user to comment /azp run to run. |
Contributor
Author
|
/check-enforcer override |
Victor Vazquez (vhvb1989)
approved these changes
Sep 11, 2026
JeffreyCA
deleted the
jeffreyca/9975-agentic-workflow-models-label-limits
branch
September 11, 2026 16:29
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.
Fixes #9975
Summary
This PR configures all three agentic workflows to use GPT-5.6 Sol with medium reasoning effort. Previously, the workflows relied on Copilot's implicit
automodel selection. Observed runs resolved that to Claude Sonnet models, includingclaude-sonnet-4.6andclaude-sonnet-5. The September 7 instruction-update run failed because Sonnet 4.6 was no longer available to theagentic-workflowsintegrator.Explicitly selecting GPT-5.6 Sol avoids that model drift and uses the preferred OpenAI model for cost and performance.
Label limits
The safe-output label limits are raised from 5 to 10 for issue triage and from 10 to 25 for extension PR labelling. The extension limit now covers bulk changes that touch many extension folders.
Model configuration
Each workflow selects
copilot/gpt-5.6-solexplicitly. Reasoning effort is passed throughengine.argsas--effort mediumbecause Copilot CLI treatsgpt-5.6-sol?effort=mediumas a literal model ID and rejects it as unsupported.The generated workflows and action lock were refreshed with gh-aw v0.88.7.
Testing
ext-agentsto docs(ai agents): clarify --no-inspector usage JeffreyCA/azure-dev#102.