Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
20 changes: 11 additions & 9 deletions .github/workflows/pr-code-quality-reviewer.lock.yml

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

1 change: 1 addition & 0 deletions .github/workflows/pr-code-quality-reviewer.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ on:
events: [pull_request_comment, pull_request_review_comment]
engine:
id: pi
model: copilot/gpt-5.4
permissions:
contents: read
issues: read
Expand Down
1 change: 1 addition & 0 deletions pkg/cli/pr_code_quality_reviewer_workflow_contract_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ func TestPRCodeQualityReviewerWorkflowSubAgentModelContract(t *testing.T) {
require.NoError(t, err, "Should read pr-code-quality-reviewer workflow")

text := string(content)
assert.Contains(t, text, "model: copilot/gpt-5.4", "Main agent should use an explicit Copilot model")
assert.Contains(t, text, "## agent: `grumpy-coder`", "Workflow should define the grumpy-coder sub-agent")
assert.Contains(t, text, "model: small", "Sub-agent should use the portable small alias")
assert.NotContains(t, text, "model: inherited", "Sub-agent should not inherit an unsupported tier-specific model")
Expand Down
Loading