From fbd5424e3423a7170480e1ff07a2059fc8a7e847 Mon Sep 17 00:00:00 2001 From: Justin Gordon Date: Sun, 8 Feb 2026 16:53:21 -1000 Subject: [PATCH] Add Claude Code Review workflow via shakacode/.github Enable automated PR reviews using the centralized reusable workflow. Uses Claude Code's default model (currently Opus 4.6). Co-Authored-By: Claude Opus 4.6 --- .github/workflows/claude-code-review.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/claude-code-review.yml diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml new file mode 100644 index 0000000..49615b8 --- /dev/null +++ b/.github/workflows/claude-code-review.yml @@ -0,0 +1,11 @@ +name: Claude Code Review + +on: + pull_request: + types: [opened, synchronize] + +jobs: + claude-review: + uses: shakacode/.github/.github/workflows/claude-code-review.yml@main + secrets: + CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}