Skip to content

Commit 46950b4

Browse files
committed
ci
1 parent aa87176 commit 46950b4

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/claude-review.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
name: Claude Review
22

33
on:
4-
pull_request:
5-
types: [opened, ready_for_review]
4+
# We have codex review.
5+
# pull_request:
6+
# types: [opened, ready_for_review]
67
issue_comment:
78
types: [created]
89

910
jobs:
1011
review:
1112
# Auto-review zbeyens/felix PRs OR /review mentions by zbeyens/felix
1213
# Exclude branches starting with "claude/"
14+
# (
15+
# (github.event_name == 'pull_request') &&
16+
# (github.event.pull_request.draft == false) &&
17+
# (!startsWith(github.event.pull_request.head.ref, 'claude/')) &&
18+
# (github.event.pull_request.user.login == 'zbeyens' ||
19+
# github.event.pull_request.user.login == 'felixfeng33')
20+
# ) ||
1321
if: |
1422
(
15-
(
16-
(github.event_name == 'pull_request') &&
17-
(github.event.pull_request.draft == false) &&
18-
(!startsWith(github.event.pull_request.head.ref, 'claude/')) &&
19-
(github.event.pull_request.user.login == 'zbeyens' ||
20-
github.event.pull_request.user.login == 'felixfeng33')
21-
) ||
2223
(
2324
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '/review') && github.event.issue.pull_request) &&
2425
(

0 commit comments

Comments
 (0)