From 01332517bab3e8152d4459c32a0526a483eec927 Mon Sep 17 00:00:00 2001 From: Lincoln Stein Date: Wed, 20 May 2026 22:19:31 -0400 Subject: [PATCH] chore(ci): use CLAUDE_CODE_OAUTH_TOKEN for claude-code-action The repository is configured with a CLAUDE_CODE_OAUTH_TOKEN secret (set up via /install-github-app), but the workflow was passing secrets.ANTHROPIC_API_KEY, which doesn't exist. The action then reported CLAUDE_CODE_OAUTH_TOKEN as unset. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/claude.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index d4d0b6fb..09a38767 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -34,7 +34,7 @@ jobs: id: claude uses: anthropics/claude-code-action@v1 with: - anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} + claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} # Optional: Customize the trigger phrase (default: @claude) # trigger_phrase: "/claude"