We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42ca655 commit 3bd4a7aCopy full SHA for 3bd4a7a
.github/workflows/ci.yaml
@@ -1013,9 +1013,15 @@ jobs:
1013
uses: ./.github/workflows/build-msi.yml
1014
if : github.event_name == 'pull_request' && contains(github.event.pull_request.body, '[test_msi]')
1015
# TODO: ADD A JOB THAT DEPENDS ON THIS TO TEST THE MSI
1016
-
+
1017
build-sdk-package:
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'
1025
with:
1026
java-version: 8
1027
0 commit comments