Skip to content

Commit 8ec5fba

Browse files
Set OpenAI as default provider (Claude on standby)
Claude API key is present but not used as primary until verified. Fallback still attempts Claude if OpenAI fails. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 2a52870 commit 8ec5fba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ai-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
ai_provider:
99
description: 'Primary AI provider for this run'
1010
required: false
11-
default: 'claude'
11+
default: 'openai'
1212
type: choice
1313
options:
1414
- claude
@@ -21,7 +21,7 @@ jobs:
2121
pull-requests: write
2222
# Priority: manual dispatch input > repo variable (vars.AI_PROVIDER) > default 'claude'
2323
env:
24-
AI_PROVIDER: ${{ github.event_name == 'workflow_dispatch' && inputs.ai_provider || vars.AI_PROVIDER || 'claude' }}
24+
AI_PROVIDER: ${{ github.event_name == 'workflow_dispatch' && inputs.ai_provider || vars.AI_PROVIDER || 'openai' }}
2525

2626
steps:
2727
- name: Checkout repo

0 commit comments

Comments
 (0)