File tree 3 files changed +18
-0
lines changed
3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -1017,6 +1017,12 @@ jobs:
1017
1017
1018
1018
build-sdk-package :
1019
1019
uses : ./.github/workflows/build-sdk.yml
1020
+ if :
1021
+ (github.event_name == 'pull_request' && !contains(github.event.pull_request.body, '[skip ci]')) ||
1022
+ (github.event_name == 'workflow_dispatch' && github.repository == 'scala/scala3') ||
1023
+ (github.event_name == 'schedule' && github.repository == 'scala/scala3') ||
1024
+ github.event_name == 'push' ||
1025
+ github.event_name == 'merge_group'
1020
1026
with :
1021
1027
java-version : 8
1022
1028
Original file line number Diff line number Diff line change 10
10
linux-x86_64 :
11
11
name : Deploy and Test on Linux x64 architecture
12
12
runs-on : ubuntu-latest
13
+ if : (github.event_name == 'pull_request' && !contains(github.event.pull_request.body, '[skip ci]') ) ||
14
+ (github.event_name == 'workflow_dispatch' && github.repository == 'scala/scala3' )
13
15
steps :
14
16
- uses : actions/checkout@v4
15
17
- name : Set up JDK 17
46
48
mac-x86_64 :
47
49
name : Deploy and Test on Mac x64 architecture
48
50
runs-on : macos-13
51
+ if : (github.event_name == 'pull_request' && !contains(github.event.pull_request.body, '[skip ci]') ) ||
52
+ (github.event_name == 'workflow_dispatch' && github.repository == 'scala/scala3' )
49
53
steps :
50
54
- uses : actions/checkout@v4
51
55
- name : Set up JDK 17
65
69
mac-aarch64 :
66
70
name : Deploy and Test on Mac ARM64 architecture
67
71
runs-on : macos-latest
72
+ if : (github.event_name == 'pull_request' && !contains(github.event.pull_request.body, '[skip ci]') ) ||
73
+ (github.event_name == 'workflow_dispatch' && github.repository == 'scala/scala3' )
68
74
steps :
69
75
- uses : actions/checkout@v4
70
76
- name : Set up JDK 17
84
90
win-x86_64 :
85
91
name : Deploy and Test on Windows x64 architecture
86
92
runs-on : windows-latest
93
+ if : (github.event_name == 'pull_request' && !contains(github.event.pull_request.body, '[skip ci]') ) ||
94
+ (github.event_name == 'workflow_dispatch' && github.repository == 'scala/scala3' )
87
95
steps :
88
96
- uses : actions/checkout@v4
89
97
- name : Set up JDK 17
Original file line number Diff line number Diff line change 16
16
jobs :
17
17
specification :
18
18
runs-on : ubuntu-latest
19
+ if : (github.event_name == 'pull_request' && !contains(github.event.pull_request.body, '[skip ci]')) ||
20
+ (github.event_name == 'workflow_dispatch' && github.repository == 'scala/scala3') ||
21
+ github.event_name == 'push' ||
22
+ github.event_name == 'merge_group'
19
23
defaults :
20
24
run :
21
25
working-directory : ./docs/_spec
You can’t perform that action at this time.
0 commit comments