File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 7
7
linux-x86_64 :
8
8
name : Deploy and Test on Linux x64 architecture
9
9
runs-on : ubuntu-latest
10
+ if : (github.event_name == 'pull_request' && !contains(github.event.pull_request.body, '[skip ci]') ) ||
11
+ (github.event_name == 'workflow_dispatch' && github.repository == 'scala/scala3' )
10
12
steps :
11
13
- uses : actions/checkout@v4
12
14
- name : Set up JDK 17
43
45
mac-x86_64 :
44
46
name : Deploy and Test on Mac x64 architecture
45
47
runs-on : macos-13
48
+ if : (github.event_name == 'pull_request' && !contains(github.event.pull_request.body, '[skip ci]') ) ||
49
+ (github.event_name == 'workflow_dispatch' && github.repository == 'scala/scala3' )
46
50
steps :
47
51
- uses : actions/checkout@v4
48
52
- name : Set up JDK 17
62
66
mac-aarch64 :
63
67
name : Deploy and Test on Mac ARM64 architecture
64
68
runs-on : macos-latest
69
+ if : (github.event_name == 'pull_request' && !contains(github.event.pull_request.body, '[skip ci]') ) ||
70
+ (github.event_name == 'workflow_dispatch' && github.repository == 'scala/scala3' )
65
71
steps :
66
72
- uses : actions/checkout@v4
67
73
- name : Set up JDK 17
81
87
win-x86_64 :
82
88
name : Deploy and Test on Windows x64 architecture
83
89
runs-on : windows-latest
90
+ if : (github.event_name == 'pull_request' && !contains(github.event.pull_request.body, '[skip ci]') ) ||
91
+ (github.event_name == 'workflow_dispatch' && github.repository == 'scala/scala3' )
84
92
steps :
85
93
- uses : actions/checkout@v4
86
94
- 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