Skip to content

Release v0.5.4: Simplify workflow token usage

Choose a tag to compare

@paul-fracture paul-fracture released this 04 Apr 23:47
· 7 commits to main since this release

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.token context 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.4

The 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.