From 9c0ab8ae8c793c9c3905c9ff22fc30d65ffcfda1 Mon Sep 17 00:00:00 2001 From: jaysonv0341 Date: Wed, 15 Oct 2025 14:57:01 -0600 Subject: [PATCH 1/2] Enable sticky PR comments for Claude reviews MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add use_sticky_comment: true to post Claude reviews as PR comments instead of only in the workflow summary. This makes reviews more visible and accessible to developers. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/claude-review.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/claude-review.yml b/.github/workflows/claude-review.yml index fffeeed..54d54da 100644 --- a/.github/workflows/claude-review.yml +++ b/.github/workflows/claude-review.yml @@ -48,3 +48,4 @@ jobs: Mode: ${{ inputs.mode }} Be concise. Flag security/PII/secrets risks. Propose diffs. claude_args: "--model ${{ inputs.model }} --max-turns 6" + use_sticky_comment: true From 0190ca316901170149604b97113e3b73569db69a Mon Sep 17 00:00:00 2001 From: jaysonv0341 Date: Wed, 15 Oct 2025 15:05:02 -0600 Subject: [PATCH 2/2] Remove Claude workflow from .github repository MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The .github repository contains workflow definitions and doesn't need Claude code reviews. Removing this prevents errors when the workflow tries to call itself without the ANTHROPIC_API_KEY secret. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/claude.yml | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 .github/workflows/claude.yml diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml deleted file mode 100644 index d5d1f09..0000000 --- a/.github/workflows/claude.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Claude Code – PR Review -on: - pull_request: - types: [opened, synchronize, reopened, ready_for_review] - -jobs: - review: - uses: isapp/.github/.github/workflows/claude-review.yml@main - with: - mode: "review" - model: "claude-sonnet-4-5" # override if needed - secrets: inherit