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 363cf37 commit edeb20eCopy full SHA for edeb20e
.github/workflows/ci.yml
@@ -314,7 +314,13 @@ jobs:
314
tests-wasi:
315
name: Unit tests (WASI)
316
needs: get-features
317
- if: contains(github.event.pull_request.labels.*.name, 'release') || contains(github.event.pull_request.labels.*.name, 'check-release')
+ if: |
318
+ github.event_name != 'pull_request' ||
319
+ github.event.pull_request.author_association == 'COLLABORATOR' ||
320
+ github.event.pull_request.author_association == 'MEMBER' ||
321
+ github.event.pull_request.user.login == 'dependabot[bot]' ||
322
+ contains(github.event.pull_request.labels.*.name, 'safe to test')
323
+
324
runs-on: ubuntu-latest
325
326
steps:
0 commit comments