File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 5151 # Run this workflow if:
5252 # - workflow_dispatch: user requested this job.
5353 # - schedule: always:
54- # - pull_request: matching skip label is NOT found
54+ # - pull_request: matching skip label is NOT found, and it's not a draft PR
5555 if : |
5656 ${{
5757 github.event_name == 'schedule' ||
6363 contains(github.event.pull_request.labels.*.name, 'AT: skip openmp') ||
6464 contains(github.event.pull_request.labels.*.name, 'AT: skip eamxx-sa') ||
6565 contains(github.event.pull_request.labels.*.name, 'AT: skip eamxx-all')
66- )
66+ ) &&
67+ !github.event.pull_request.draft
6768 )
6869 }}
6970 name : gcc-openmp / ${{ matrix.build_type }}
Original file line number Diff line number Diff line change 5555 # Run this workflow if:
5656 # - workflow_dispatch: user requested this job.
5757 # - schedule: always:
58- # - pull_request: matching skip label is NOT found
58+ # - pull_request: matching skip label is NOT found, and it's not a draft PR
5959 if : |
6060 ${{
6161 github.event_name == 'schedule' ||
6666 contains(github.event.pull_request.labels.*.name, 'AT: skip gcc') ||
6767 contains(github.event.pull_request.labels.*.name, 'AT: skip eamxx-v1') ||
6868 contains(github.event.pull_request.labels.*.name, 'AT: skip eamxx-all')
69- )
69+ ) &&
70+ !github.event.pull_request.draft
7071 )
7172 }}
7273 steps :
You can’t perform that action at this time.
0 commit comments