Skip to content

Commit edeb20e

Browse files
authored
ci: run WASI CI on non-release fix (#1347)
1 parent 363cf37 commit edeb20e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,13 @@ jobs:
314314
tests-wasi:
315315
name: Unit tests (WASI)
316316
needs: get-features
317-
if: contains(github.event.pull_request.labels.*.name, 'release') || contains(github.event.pull_request.labels.*.name, 'check-release')
317+
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+
318324
runs-on: ubuntu-latest
319325

320326
steps:

0 commit comments

Comments
 (0)