Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ai-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: AI Code Review

on:
pull_request:
types: [opened, reopened, ready_for_review] # no synchronize: avoid re-reviewing every push
types: [opened, reopened, ready_for_review, synchronize] # synchronize: re-review on each push. Drop if cost is a concern.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ [MEDIUM] [MEDIUM] concurrencycancel-in-progress 設定の確認が必要です。

synchronize を追加することで、連続プッシュ時に古い実行をキャンセルする動作が期待されていますが、現在の concurrency 設定に cancel-in-progress: true が明示されているか確認してください。この設定がない場合、古い実行はキャンセルされずキューに積まれ続け、コスト増加や意図しない動作につながる可能性があります。

concurrency:
  group: ai-code-review-${{ github.event.pull_request.number }}
  cancel-in-progress: true  # ← これが必要


concurrency:
group: ai-code-review-${{ github.event.pull_request.number }}
Expand Down
Loading