From f5c6cbdcf3375c48e0d02f16dd81507ee724f5c1 Mon Sep 17 00:00:00 2001 From: jth-nw Date: Tue, 10 Mar 2026 11:51:53 -0500 Subject: [PATCH] debug: enable show_full_output and add GH_TOKEN to doc-pr step Claude ran 15 turns successfully but posted no comment. Enable show_full_output to see what Claude actually did, and explicitly pass GH_TOKEN so gh CLI commands work inside the action. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/claude-doc-pr.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/claude-doc-pr.yml b/.github/workflows/claude-doc-pr.yml index 69bb48e354..479b1d2050 100644 --- a/.github/workflows/claude-doc-pr.yml +++ b/.github/workflows/claude-doc-pr.yml @@ -87,9 +87,12 @@ jobs: - name: Run doc-pr review if: steps.changed-files.outputs.count > 0 uses: anthropics/claude-code-action@v1 + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} github_token: ${{ secrets.GITHUB_TOKEN }} + show_full_output: true prompt: | Call the doc-pr review skill: /doc-pr ${{ steps.changed-files.outputs.files }} ${{ github.event.pull_request.number }}