[aw] Stabilize Daily Documentation Updater model experiment selection#37582
Merged
Conversation
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Debug workflow failure for daily documentation updater
[aw] Stabilize Daily Documentation Updater model experiment selection
Jun 7, 2026
pelikhan
approved these changes
Jun 7, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Stabilizes the Daily Documentation Updater workflow’s experiment-driven model selection by replacing ambiguous model aliases with explicit Claude model IDs, and syncs the compiled lock workflow to match so runtime activation resolves deterministically.
Changes:
- Switched
experiments.model_size.variantsfromagent/small-agenttoclaude-sonnet-4.6/claude-haiku-4.5in the workflow markdown. - Regenerated
daily-doc-updater.lock.ymlso the embeddedGH_AW_EXPERIMENT_SPECmatches the new explicit model variants. - Updated action pin inventories with additional pinned versions for several actions.
Show a summary per file
| File | Description |
|---|---|
pkg/workflow/data/action_pins.json |
Adds additional action pin entries (new pinned versions). |
pkg/actionpins/data/action_pins.json |
Mirrors the same additional action pin entries in the other inventory location. |
.github/workflows/daily-doc-updater.md |
Updates the experiment variants and text to explicit Sonnet vs Haiku model IDs. |
.github/workflows/daily-doc-updater.lock.yml |
Syncs the compiled workflow artifact to the updated experiment spec. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Files reviewed: 4/4 changed files
- Comments generated: 2
Comment on lines
+51
to
+60
| "actions/checkout@v4": { | ||
| "repo": "actions/checkout", | ||
| "version": "v4", | ||
| "sha": "34e114876b0b11c390a56381ad16ebd13914f8d5" | ||
| }, | ||
| "actions/checkout@v6.0.2": { | ||
| "repo": "actions/checkout", | ||
| "version": "v6.0.2", | ||
| "sha": "de0fac2e4500dabe0009e67214ff5f5447ce83dd" | ||
| }, |
Comment on lines
+51
to
+60
| "actions/checkout@v4": { | ||
| "repo": "actions/checkout", | ||
| "version": "v4", | ||
| "sha": "34e114876b0b11c390a56381ad16ebd13914f8d5" | ||
| }, | ||
| "actions/checkout@v6.0.2": { | ||
| "repo": "actions/checkout", | ||
| "version": "v6.0.2", | ||
| "sha": "de0fac2e4500dabe0009e67214ff5f5447ce83dd" | ||
| }, |
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.
Daily Documentation Updater failed on
mainbecause the agent run selected a generic experimental model alias that resolved to an incompatible runtime configuration (400: model does not support effort parameter). This PR narrows the experiment to explicit Claude model IDs to keep model selection valid and deterministic.Workflow experiment model selection
experiments.model_size.variantsin.github/workflows/daily-doc-updater.md:agent,small-agentclaude-sonnet-4.6,claude-haiku-4.5Compiled workflow artifact sync
.github/workflows/daily-doc-updater.lock.ymlso activation/runtime env receives the same explicit model variants.Resulting runtime behavior
needs.activation.outputs.model_sizenow resolves to concrete Claude model names, avoiding ambiguous alias expansion in the agent path.