diff --git a/.github/workflows/ai-review.yml b/.github/workflows/ai-review.yml index d8b302b8..0c4d5f4e 100644 --- a/.github/workflows/ai-review.yml +++ b/.github/workflows/ai-review.yml @@ -21,16 +21,19 @@ on: jobs: kimi-review: + if: github.event_name == 'issue_comment' || github.event.pull_request.draft == false uses: lambdaclass/actions/.github/workflows/ai-review-kimi.yml@v1 secrets: KIMI_API_KEY: ${{ secrets.KIMI_API_KEY }} codex-review: + if: github.event_name == 'issue_comment' || github.event.pull_request.draft == false uses: lambdaclass/actions/.github/workflows/ai-review-codex.yml@v1 secrets: OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} claude-review: + if: github.event_name == 'issue_comment' || github.event.pull_request.draft == false uses: lambdaclass/actions/.github/workflows/ai-review-claude.yml@v1 secrets: ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}