Merged
Conversation
Switch from API key to OAuth token authentication so the action uses the existing Claude Max subscription instead of separate API billing. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
Coverage report for commit: 9d4bb68 Summary - Lines: 100.00% | Methods: 100.00% | Branches: 97.22%
🤖 comment via lucassabreu/comment-coverage-clover |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related Issue
Fixes #558 (follow-up)
PR Type
Description
Switches the Claude Code GitHub Action from API key authentication (
anthropic_api_key) to OAuth token authentication (claude_code_oauth_token). This allows the action to use an existing Claude Max subscription instead of requiring separate API billing.Proposed Changes
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}withclaude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}in.github/workflows/claude.ymlHow Has This Been Tested?
The workflow change can be verified once the
CLAUDE_CODE_OAUTH_TOKENrepository secret is configured (generated viaclaude setup-token). The oldANTHROPIC_API_KEYsecret can then be removed.Screenshots/Recordings
N/A — CI configuration change only.
Breaking Changes
Checklist
Additional Notes
Before merging, ensure the
CLAUDE_CODE_OAUTH_TOKENrepository secret has been created. Generate it locally withclaude setup-token(requires a Claude Pro/Max subscription). After confirming the OAuth token works, theANTHROPIC_API_KEYsecret can be deleted.