From 47ca23d8006b8cc7e36d6bf3b8a28d1c624f6f6f Mon Sep 17 00:00:00 2001 From: leesam Date: Fri, 16 Jan 2026 16:05:22 +0900 Subject: [PATCH] ai: disable claude code review --- .github/workflows/claude-code-review.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml index 57460c0..cb88a8d 100644 --- a/.github/workflows/claude-code-review.yml +++ b/.github/workflows/claude-code-review.yml @@ -1,14 +1,12 @@ name: Claude Code Review on: - pull_request: - types: [] # [opened, synchronize] - # Optional: Only run on specific file changes - # paths: - # - "src/**/*.ts" - # - "src/**/*.tsx" - # - "src/**/*.js" - # - "src/**/*.jsx" + issue_comment: + types: [created] + pull_request_review_comment: + types: [created] + pull_request_review: + types: [submitted] jobs: claude-review: @@ -18,6 +16,7 @@ jobs: # github.event.pull_request.user.login == 'new-developer' || # github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR' + if: false runs-on: ubuntu-latest permissions: contents: read @@ -67,7 +66,7 @@ jobs: claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} prompt: | REPO: ${{ github.repository }} - PR NUMBER: ${{ github.event.pull_request.number }} + PR NUMBER: ${{ github.event.pull_request.number || github.event.issue.number }} Please review this pull request and provide feedback on: - Code quality and best practices