File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -1013,9 +1013,15 @@ jobs:
1013
1013
uses : ./.github/workflows/build-msi.yml
1014
1014
if : github.event_name == 'pull_request' && contains(github.event.pull_request.body, '[test_msi]')
1015
1015
# TODO: ADD A JOB THAT DEPENDS ON THIS TO TEST THE MSI
1016
-
1016
+
1017
1017
build-sdk-package :
1018
1018
uses : ./.github/workflows/build-sdk.yml
1019
+ if :
1020
+ (github.event_name == 'pull_request' && !contains(github.event.pull_request.body, '[skip ci]')) ||
1021
+ (github.event_name == 'workflow_dispatch' && github.repository == 'scala/scala3') ||
1022
+ (github.event_name == 'schedule' && github.repository == 'scala/scala3') ||
1023
+ github.event_name == 'push' ||
1024
+ github.event_name == 'merge_group'
1019
1025
with :
1020
1026
java-version : 8
1021
1027
You can’t perform that action at this time.
0 commit comments