diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index 850284fa6..a15950130 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -28,6 +28,7 @@ jobs: - name: Run Claude Code Review id: claude-review + if: ${{ !contains(github.event.pull_request.title, '[WIP]') }} uses: anthropics/claude-code-action@beta with: claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} @@ -66,6 +67,3 @@ jobs: # Optional: Add specific tools for running tests or linting # allowed_tools: "Bash(npm run test),Bash(npm run lint),Bash(npm run typecheck)" - # Optional: Skip review for certain conditions - if: | - !contains(github.event.pull_request.title, '[WIP]')