From 5682e60934ff79751bb451993e427ff1ed14e79f Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Thu, 8 Jan 2026 15:32:53 +0800 Subject: [PATCH] config: add Claude permissions settings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Define allowed Bash operations for gh CLI commands used in PR review automation workflows. 🤖 Generated with Claude Code (https://claude.ai/code) Co-Authored-By: Claude --- .claude/settings.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .claude/settings.json diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 0000000..73febfb --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,18 @@ +{ + "permissions": { + "allow": [ + "Bash(gh api:*)", + "Bash(gh pr close:*)", + "Bash(gh pr comment:*)", + "Bash(gh pr diff:*)", + "Bash(gh pr edit:*)", + "Bash(gh pr list:*)", + "Bash(gh pr view:*)", + "Bash(gh run list:*)", + "Bash(gh run rerun:*)", + "Bash(gh run view:*)", + "Bash(gh search:*)" + ], + "deny": [] + } +}