From 0763498a5a7dd1778edfb255374e71ce88d91d6b Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Tue, 22 Jul 2025 20:02:46 -0700 Subject: [PATCH] feat: add DETAILED_PERMISSION_MESSAGES env var to Claude Code invocation (#328) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enables detailed permission messages in Claude Code by setting the DETAILED_PERMISSION_MESSAGES environment variable to '1' in the Run Claude Code step. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index 2cc3291..b207893 100644 --- a/action.yml +++ b/action.yml @@ -216,6 +216,7 @@ runs: ANTHROPIC_MODEL: ${{ inputs.model || inputs.anthropic_model }} GITHUB_TOKEN: ${{ steps.prepare.outputs.GITHUB_TOKEN }} NODE_VERSION: ${{ env.NODE_VERSION }} + DETAILED_PERMISSION_MESSAGES: "1" # Provider configuration ANTHROPIC_API_KEY: ${{ inputs.anthropic_api_key }}