Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
1589772
Initial plan
Copilot Jul 28, 2026
5a4d120
Fix DefaultCopilotVersion toolcache drift: update compat.json, script…
Copilot Jul 28, 2026
3ed368f
docs(adr): add draft ADR-48593 for compat-range toolcache matching
github-actions[bot] Jul 28, 2026
ad60f57
Address review feedback: fix open *bool, wildcard guard, dev/release …
Copilot Jul 28, 2026
bb52032
Preserve exact Copilot pins in compat fallback
Copilot Jul 28, 2026
c6838b6
Merge branch 'main' into copilot/fix-default-copilot-version-drifting
github-actions[bot] Jul 28, 2026
c2cd121
Merge branch 'main' into copilot/fix-default-copilot-version-drifting
pelikhan Jul 28, 2026
f51cf40
fix: make open Copilot compat range unbounded
Copilot Jul 28, 2026
c7b406e
Merge branch 'main' into copilot/fix-default-copilot-version-drifting
github-actions[bot] Jul 28, 2026
cc0ed02
Merge branch 'main' into copilot/fix-default-copilot-version-drifting
pelikhan Jul 29, 2026
4389225
Simplify Copilot installer version precedence
Copilot Jul 29, 2026
0757e87
Defer default Copilot version until cache miss
Copilot Jul 29, 2026
223516d
Merge branch 'main' into copilot/fix-default-copilot-version-drifting
pelikhan Jul 29, 2026
edd2d2d
Merge remote-tracking branch 'origin/main' into copilot/fix-default-c…
Copilot Jul 29, 2026
04561cc
chore: refresh workflows after main update
Copilot Jul 29, 2026
2e9d4bc
Merge remote-tracking branch 'origin/main' into copilot/fix-default-c…
Copilot Jul 29, 2026
bcf9d77
Merge branch 'main' into copilot/fix-default-copilot-version-drifting
github-actions[bot] Jul 29, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/aw/compat.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"min-gh-aw": "0.72.0",
"max-gh-aw": "*",
"min-agent": "1.0.21",
"max-agent": "1.0.56",
"max-agent": "*",
"open": true
},
{
Expand Down
24 changes: 21 additions & 3 deletions .github/aw/compat.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@
{ "type": "string", "enum": ["*"] }
]
},
"agentBound": {
"oneOf": [
{ "$ref": "#/definitions/semver" },
{ "type": "string", "enum": ["*"] }
]
},
"agentRows": {
"type": "array",
"minItems": 1,
Expand All @@ -75,18 +81,30 @@
"min-gh-aw": { "$ref": "#/definitions/semver" },
"max-gh-aw": { "$ref": "#/definitions/ghAwBound" },
"min-agent": { "$ref": "#/definitions/semver" },
"max-agent": { "$ref": "#/definitions/semver" },
"max-agent": { "$ref": "#/definitions/agentBound" },
"open": {
"type": "boolean",
"default": true,
"description": "When true (the default), the setup action's weekly release process may continue bumping max-agent for this row. Set to false to freeze during rollback or quarantine. Permitted only on the catch-all row (max-gh-aw == \"*\"); bounded rows are closed-by-construction."
"description": "When true (the default), max-agent must be unbounded (\"*\"). Set to false to freeze the row with a specific max-agent during rollback or quarantine. Permitted only on the catch-all row (max-gh-aw == \"*\"); bounded rows are closed-by-construction."
}
},
"if": {
"properties": { "max-gh-aw": { "const": "*" } }
},
"then": {},
"then": {
"if": {
"properties": { "open": { "const": false } },
"required": ["open"]
},
"then": {
"properties": { "max-agent": { "$ref": "#/definitions/semver" } }
},
"else": {
"properties": { "max-agent": { "const": "*" } }
}
},
"else": {
"properties": { "max-agent": { "$ref": "#/definitions/semver" } },
"not": { "required": ["open"] }
}
}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ab-testing-advisor.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions .github/workflows/ace-editor.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions .github/workflows/agent-performance-analyzer.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .github/workflows/agent-persona-explorer.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions .github/workflows/agentic-token-audit.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions .github/workflows/agentic-token-optimizer.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions .github/workflows/agentic-token-trend-audit.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions .github/workflows/archie.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions .github/workflows/architecture-guardian.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions .github/workflows/artifacts-summary.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .github/workflows/auto-triage-issues.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions .github/workflows/bot-detection.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading