File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 26
26
id : check-build
27
27
run : |
28
28
artifact_exists=${{ steps.artifact-exists.outputs.exists }}
29
- is_pr=${{ github.event_name == 'pull_request' }}
29
+ is_pr=${{ github.event.pull_request.number != null }}
30
30
is_performance_test=${{ matrix.type == 'performance' }}
31
31
is_performance_enabled=${{ contains(github.event.pull_request.labels.*.name, 'perf_test') }}
32
32
Original file line number Diff line number Diff line change 22
22
- name : Evaluate if tests should be run
23
23
id : check-tests
24
24
run : |
25
- is_pr=${{ github.event_name == 'pull_request' }}
25
+ is_pr=${{ github.event.pull_request.number != null }}
26
26
is_performance_test=${{ matrix.type == 'performance' }}
27
27
is_performance_enabled=${{ contains(github.event.pull_request.labels.*.name, 'perf_test') }}
28
28
You can’t perform that action at this time.
0 commit comments