fix(ci): temporarily disable Claude Code Review until secret is configured

The workflow requires ANTHROPIC_API_KEY secret to be set in repository settings.
Without it, the action attempts OIDC authentication which fails.

To enable:
1. Go to https://github.com/wailsapp/wails/settings/secrets/actions
2. Add ANTHROPIC_API_KEY with your Anthropic API key
3. Remove the 'if: false' condition from the workflow file

Refs: https://github.com/anthropics/claude-code-action
This commit is contained in:
Lea Anthony 2026-02-15 14:45:00 +11:00
commit 347044f4ea

View file

@ -12,6 +12,10 @@ on:
jobs:
claude-review:
# Temporarily disabled until ANTHROPIC_API_KEY secret is configured
# To enable: Remove the 'if: false' line below and add ANTHROPIC_API_KEY to repository secrets
if: false
# Optional: Filter by PR author
# if: |
# github.event.pull_request.user.login == 'external-contributor' ||