File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,16 @@ jobs:
205205
206206 test_windows_fast :
207207 runs-on : [self-hosted, Windows]
208- if : false
208+ if : " (
209+ github.event_name == 'push'
210+ && github.ref != 'refs/heads/main'
211+ )
212+ || github.event_name == 'merge_group'
213+ || (
214+ github.event_name == 'pull_request'
215+ && !contains(github.event.pull_request.body, '[skip ci]')
216+ && !contains(github.event.pull_request.body, '[skip test_windows_fast]')
217+ )"
209218
210219 steps :
211220 - name : Reset existing repo
@@ -243,7 +252,13 @@ jobs:
243252
244253 test_windows_full :
245254 runs-on : [self-hosted, Windows]
246- if : false
255+ if : " github.event_name == 'schedule' && github.repository == 'scala/scala3'
256+ || github.event_name == 'push'
257+ || (
258+ github.event_name == 'pull_request'
259+ && !contains(github.event.pull_request.body, '[skip ci]')
260+ && contains(github.event.pull_request.body, '[test_windows_full]')
261+ )"
247262
248263 steps :
249264 - name : Reset existing repo
You can’t perform that action at this time.
0 commit comments