From 9478ec475134c0a4dbc8b206d467b86976703236 Mon Sep 17 00:00:00 2001 From: Oliver Meyer Date: Thu, 29 Jan 2026 12:36:01 +0100 Subject: [PATCH] chore: fix Claude sticky comments in PR reviews Sticky comments only work when Claude uses the default Claude[bot] user. When we pass a custom token, it uses git github-actions[bot] user and sticky comments don't work. --- .github/workflows/_claude-code.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/_claude-code.yml b/.github/workflows/_claude-code.yml index 06aaab21c..aa9e305f9 100644 --- a/.github/workflows/_claude-code.yml +++ b/.github/workflows/_claude-code.yml @@ -79,7 +79,6 @@ jobs: if: inputs.mode == 'interactive' uses: anthropics/claude-code-action@v1 with: - github_token: ${{ secrets.GITHUB_TOKEN }} anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} track_progress: ${{ inputs.track_progress }} additional_permissions: | @@ -95,7 +94,6 @@ jobs: if: inputs.mode == 'automation' uses: anthropics/claude-code-action@v1.0.29 with: - github_token: ${{ secrets.GITHUB_TOKEN }} anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} track_progress: ${{ inputs.track_progress }} use_sticky_comment: ${{ inputs.use_sticky_comment }}