We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b27eb18 commit 3c8c0dfCopy full SHA for 3c8c0df
1 file changed
.github/workflows/bonk-pr-review.yml
@@ -6,7 +6,10 @@ on:
6
7
jobs:
8
review:
9
- if: github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
+ # 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')
13
runs-on: ubuntu-latest
14
timeout-minutes: 30
15
concurrency:
0 commit comments