Skip to content

Commit d17bf01

Browse files
fix Infra: Do not run e2e reports task on forks #313
1 parent e267fa4 commit d17bf01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/e2e-run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
reports:
135135
runs-on: ubuntu-latest
136136
needs: tests
137-
if: ${{ !cancelled() && github.event.pull_request.head.repo.full_name == github.repository }}
137+
if: ${{ !cancelled() && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) }}
138138
steps:
139139
- name: Download allure reports artifact
140140
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)