Skip to content

Commit 633f025

Browse files
committed
fix: Allow contributors to trigger end-to-end tests
- Modified the e2e workflow to include contributors - Ensured contributor pull requests trigger tests Signed-off-by: Chmouel Boudjnah <[email protected]>
1 parent 1ba08cf commit 633f025

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
github.event_name == 'schedule' ||
3333
github.event_name == 'workflow_dispatch' ||
3434
(github.event_name == 'pull_request_target' &&
35-
contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR"]'), github.event.pull_request.author_association))
35+
contains(fromJSON('["OWNER", "MEMBER", "COLLABORATOR", "CONTRIBUTOR"]'), github.event.pull_request.author_association))
3636
concurrency:
3737
group: ${{ github.workflow }}-${{ matrix.provider }}-${{ github.event.pull_request.number || github.ref_name }}
3838
cancel-in-progress: true

0 commit comments

Comments
 (0)