mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-19 14:41:24 +08:00
fix: don't review on draft pr (#10084)
This commit is contained in:
parent
cf7584bb63
commit
125353c5a3
4
.github/workflows/claude-code-review.yml
vendored
4
.github/workflows/claude-code-review.yml
vendored
@ -14,7 +14,9 @@ jobs:
|
|||||||
claude-review:
|
claude-review:
|
||||||
# Only trigger code review for PRs from the main repository due to upstream OIDC issues
|
# Only trigger code review for PRs from the main repository due to upstream OIDC issues
|
||||||
# https://github.com/anthropics/claude-code-action/issues/542
|
# https://github.com/anthropics/claude-code-action/issues/542
|
||||||
if: github.event.pull_request.head.repo.full_name == github.repository
|
if: |
|
||||||
|
(github.event.pull_request.head.repo.full_name == github.repository) &&
|
||||||
|
(github.event.pull_request.draft == false)
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user