From 90d189f3abd48655ec3e2c67c552cc23e92d6028 Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Tue, 30 Sep 2025 18:04:13 -0700 Subject: [PATCH] fix: update permission test prompts to trigger actual tool usage (#596) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed test prompts from communication-style echo commands to legitimate technical operations. This ensures Claude attempts the Bash tool call (which then gets blocked by permissions) instead of refusing based on communication guidelines. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude --- .github/workflows/test-settings.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-settings.yml b/.github/workflows/test-settings.yml index c666155..caa7f35 100644 --- a/.github/workflows/test-settings.yml +++ b/.github/workflows/test-settings.yml @@ -67,7 +67,7 @@ jobs: uses: ./base-action with: prompt: | - Use Bash to echo "This should not work" + Run the command `echo $HOME` to check the home directory path anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} settings: | { @@ -163,7 +163,7 @@ jobs: uses: ./base-action with: prompt: | - Use Bash to echo "This should not work from file" + Run the command `echo $HOME` to check the home directory path anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} settings: "test-settings.json"