File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ concurrency:
31
31
jobs :
32
32
run_examples :
33
33
name : Run examples in '${{ matrix.example }}' on ${{ matrix.db }}
34
+ if : ( github.event_name == 'schedule' && startsWith( github.ref, 'refs/heads/wip/' ) ) || ( github.event_name != 'schedule' )
34
35
runs-on : ubuntu-latest
35
36
strategy :
36
37
matrix :
@@ -108,6 +109,7 @@ jobs:
108
109
109
110
test_dbs :
110
111
name : Test with ${{ matrix.db }}
112
+ if : ( github.event_name == 'schedule' && startsWith( github.ref, 'refs/heads/wip/' ) ) || ( github.event_name != 'schedule' )
111
113
runs-on : ubuntu-latest
112
114
strategy :
113
115
matrix :
@@ -147,6 +149,7 @@ jobs:
147
149
148
150
test_jdks :
149
151
name : Test with Java ${{ matrix.java.name }}
152
+ if : ( github.event_name == 'schedule' && startsWith( github.ref, 'refs/heads/wip/' ) ) || ( github.event_name != 'schedule' )
150
153
runs-on : ubuntu-latest
151
154
strategy :
152
155
fail-fast : false
You can’t perform that action at this time.
0 commit comments