Skip to content

Commit 3c8c0df

Browse files
ci: skip Bonk PR review on Version Packages PRs (#13934)
1 parent b27eb18 commit 3c8c0df

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/bonk-pr-review.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ on:
66

77
jobs:
88
review:
9-
if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
9+
# Skip Version Packages PRs (auto-generated by the changesets action) since they don't need a Bonk review
10+
if: |
11+
github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name &&
12+
!(github.event.pull_request.base.repo.owner.login == 'cloudflare' && github.event.pull_request.head.ref == 'changeset-release/main')
1013
runs-on: ubuntu-latest
1114
timeout-minutes: 30
1215
concurrency:

0 commit comments

Comments
 (0)