File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -101,6 +101,11 @@ jobs:
101
101
|| (
102
102
github.event_name == 'pull_request'
103
103
&& !contains(github.event.pull_request.body, '[skip ci]')
104
+ )
105
+ || (
106
+ github.event_name == 'pull_request'
107
+ && !contains(github.event.pull_request.body, '[skip ci]')
108
+ && !contains(github.event.pull_request.body, '[skip test_windows_fast]')
104
109
)"
105
110
106
111
steps :
@@ -121,6 +126,11 @@ jobs:
121
126
|| (
122
127
github.event_name == 'push'
123
128
&& !startsWith(github.event.ref, 'refs/tags/sbt-dotty-')
129
+ )
130
+ || (
131
+ github.event_name == 'pull_request'
132
+ && !contains(github.event.pull_request.body, '[skip ci]')
133
+ && contains(github.event.pull_request.body, '[test_windows_full]')
124
134
)"
125
135
126
136
steps :
You can’t perform that action at this time.
0 commit comments