Skip to content

Commit 7727f1e

Browse files
CopilotSteake
andcommitted
fix: update COPILOT_AGENT_ASSIGNEE from 'copilot+gpt-5.3-codex' to 'copilot'
Co-authored-by: Steake <530040+Steake@users.noreply.github.com>
1 parent 5521a7b commit 7727f1e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

repo_architect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198
# Labels required for an issue to be eligible for execution selection
199199
EXECUTION_ELIGIBLE_LABELS: Tuple[str, ...] = ("arch-gap", "copilot-task", "needs-implementation")
200200
# GitHub Copilot coding agent assignee username
201-
COPILOT_AGENT_ASSIGNEE = "copilot+gpt-5.3-codex"
201+
COPILOT_AGENT_ASSIGNEE = "copilot"
202202
# Canonical architectural objectives aligned with charter §14 priority order
203203
OBJECTIVE_LABELS: Dict[str, str] = {
204204
"restore-parse-correctness": "Restore or preserve parse correctness (Lane 2)",

tests/test_repo_architect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3515,7 +3515,7 @@ def test_merged_lifecycle_added_on_merged_pr(self) -> None:
35153515
self.assertNotIn("pr-open", new_labels)
35163516

35173517
def test_copilot_assignee_constant(self) -> None:
3518-
self.assertEqual(ra.COPILOT_AGENT_ASSIGNEE, "copilot+gpt-5.3-codex")
3518+
self.assertEqual(ra.COPILOT_AGENT_ASSIGNEE, "copilot")
35193519

35203520

35213521
# ---------------------------------------------------------------------------

0 commit comments

Comments
 (0)