Skip to content

Commit cd65235

Browse files
committed
wip
1 parent 98c4e77 commit cd65235

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/validate.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ jobs:
1010
multiple-labels:
1111
name: 'Check that only one validation label is applied'
1212
if: >
13-
( (contains(github.event.pull_request.labels.*.name, 'run-full-validation') ? 1 : 0) +
14-
(contains(github.event.pull_request.labels.*.name, 'run-full-validation-long') ? 1 : 0) +
15-
(contains(github.event.pull_request.labels.*.name, 'run-quick-validation') ? 1 : 0)
16-
) > 1
13+
github.event.pull_request.labels != null && (contains(github.event.pull_request.labels.*.name, 'run-full-validation') + contains(github.event.pull_request.labels.*.name, 'run-full-validation-long') + contains(github.event.pull_request.labels.*.name, 'run-quick-validation') == 1)
1714
runs-on: ubuntu-latest
1815
steps:
1916
- run: |

0 commit comments

Comments
 (0)