From ab88a6424f605adbd7ddffae9bde7256f6a5a076 Mon Sep 17 00:00:00 2001 From: Justin Gordon Date: Sun, 8 Feb 2026 16:55:28 -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 }}