From 347044f4eaafe41e1939662b8cbba8153de43912 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Sun, 15 Feb 2026 14:45:00 +1100 Subject: [PATCH] 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 --- .github/workflows/claude-code-review.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index fa7ab9822..b85b8dfbc 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -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' ||