Release v0.5.4: Simplify workflow token usage
Claude Code GitHub Action v0.5.4
This release significantly simplifies the GitHub token handling in workflows and fixes a critical issue with reserved token names.
What's Fixed
- Workflow Token Handling: Removed the need to pass GITHUB_TOKEN as a secret
- Token Name Collision: Fixed error with reserved GITHUB_TOKEN name in reusable workflows
- Simplified Integration: Users no longer need to pass GITHUB_TOKEN to workflows explicitly
Technical Details
- Now using GitHub's built-in
github.tokencontext variable - Removed token passing requirements from all reusable workflows
- Updated examples and README to match this simpler approach
Upgrading
To upgrade, simply update the version references in your workflow files:
uses: fractureinc/claude-code-github-action/.github/workflows/claude-full.yml@v0.5.4
uses: fractureinc/claude-code-github-action/.github/workflows/claude-label-fix.yml@v0.5.4The only secret you now need to pass is your ANTHROPIC_API_KEY:
secrets:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}All previous features from v0.5.3 remain intact, including the multi-line feedback handling.