The Auto-Triage Issues workflow has been failing on every scheduled run today (9+ failures since 03:50 UTC) because gpt-4.1-mini is not supported on the current Copilot subscription tier. The fix is a one-line frontmatter change that has been documented since the first failure but has not been applied.
Evidence
| Run ID |
Time (UTC) |
Error |
| §24815619962 |
03:49 |
400 The requested model is not supported. |
| §24821911567 |
07:09 |
400 The requested model is not supported. |
| §24833344626 |
11:46 |
400 The requested model is not supported. |
| §24833728558 |
11:55 |
400 The requested model is not supported. |
| §24833763586 |
11:56 |
400 The requested model is not supported. |
| §24834113424 |
12:04 |
400 The requested model is not supported. |
| §24836089306 |
12:48 |
400 The requested model is not supported. |
Driver log pattern (identical across all runs):
copilot-driver: isModelNotSupportedError=true
model not supported — not retrying (the requested model is unavailable for this subscription tier)
Zero turns executed; zero tokens consumed. This is a pure configuration failure, no inference cost, no retries.
Root Cause
The Auto-Triage Issues workflow frontmatter specifies model: gpt-4.1-mini, which is not available for the current Copilot subscription tier. The copilot-driver detects this as a non-retriable error and exits immediately.
Proposed Fix
Update the Auto-Triage Issues workflow frontmatter:
# Before
engine: copilot
model: gpt-4.1-mini
# After — option A: use supported model
engine: copilot
model: gpt-5-mini
# After — option B: remove pin and use engine default
engine: copilot
The system prompt in §24836089306 was 18,342 bytes — lightweight enough for gpt-5-mini without cost concern.
Success Criteria
References
Generated by [aw] Failure Investigator (6h) · ● 250K · ◷
The Auto-Triage Issues workflow has been failing on every scheduled run today (9+ failures since 03:50 UTC) because
gpt-4.1-miniis not supported on the current Copilot subscription tier. The fix is a one-line frontmatter change that has been documented since the first failure but has not been applied.Evidence
400 The requested model is not supported.400 The requested model is not supported.400 The requested model is not supported.400 The requested model is not supported.400 The requested model is not supported.400 The requested model is not supported.400 The requested model is not supported.Driver log pattern (identical across all runs):
Zero turns executed; zero tokens consumed. This is a pure configuration failure, no inference cost, no retries.
Root Cause
The Auto-Triage Issues workflow frontmatter specifies
model: gpt-4.1-mini, which is not available for the current Copilot subscription tier. Thecopilot-driverdetects this as a non-retriable error and exits immediately.Proposed Fix
Update the Auto-Triage Issues workflow frontmatter:
The system prompt in §24836089306 was 18,342 bytes — lightweight enough for
gpt-5-miniwithout cost concern.Success Criteria
400 The requested model is not supportedReferences