From 321ab69d825a24cca768fc337a84ecb28756594c Mon Sep 17 00:00:00 2001 From: Jonathan Peppers Date: Wed, 24 Jun 2026 12:58:47 -0500 Subject: [PATCH] Use Claude Opus 4.8 for weekly stable updates agent Bumps the model used when assigning the weekly stable updates issue to the Copilot coding agent from claude-opus-4.6 to claude-opus-4.8. Also drops the model version from the step name so it doesn't go stale on future bumps. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/weekly-stable-updates.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/weekly-stable-updates.yml b/.github/workflows/weekly-stable-updates.yml index 4c37cad64..5c70fa5c2 100644 --- a/.github/workflows/weekly-stable-updates.yml +++ b/.github/workflows/weekly-stable-updates.yml @@ -75,7 +75,7 @@ jobs: console.log(`Created issue #${response.data.number}: ${response.data.title}`); core.setOutput('issue-number', response.data.number); - - name: Assign issue to Copilot with Claude Opus 4.6 + - name: Assign issue to Copilot if: steps.create-issue.outputs.issue-number && steps.create-issue.outputs.issue-number != '' run: | gh api \ @@ -86,7 +86,7 @@ jobs: --input - <<< '{ "assignees": ["copilot-swe-agent[bot]"], "agent_assignment": { - "model": "claude-opus-4.6" + "model": "claude-opus-4.8" } }' env: