Skip to content

Commit 8969c8f

Browse files
sbryngelsonclaude
andcommitted
Skip benchmark workflow for bot review events
Bot reviews (AI code reviewers) were triggering the benchmark workflow, and the concurrency group was cancelling the real benchmark run from the pull_request event. Gate the workflow early by skipping when the review author is a Bot account type. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent dd72e48 commit 8969c8f

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/bench.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ concurrency:
1313
jobs:
1414
file-changes:
1515
name: Detect File Changes
16+
if: >
17+
github.event_name != 'pull_request_review' ||
18+
github.event.review.user.type != 'Bot'
1619
runs-on: 'ubuntu-latest'
1720
outputs:
1821
checkall: ${{ steps.changes.outputs.checkall }}

0 commit comments

Comments
 (0)