Skip to content

Commit 5fd2b6a

Browse files
committed
fix: disable claude for drafts
1 parent 1c65975 commit 5fd2b6a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/claude-code-review.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
# Optional: Skip review for specific conditions
1818
if: |
1919
!contains(github.event.pull_request.title, '[skip-review]') &&
20-
!contains(github.event.pull_request.title, '[WIP]')
20+
!contains(github.event.pull_request.title, '[WIP]') &&
21+
github.event.pull_request.draft == false
2122
2223
runs-on: ubuntu-latest
2324
permissions:

0 commit comments

Comments
 (0)