|
9 | 9 |
|
10 | 10 | jobs: |
11 | 11 | build: |
12 | | - if: contains(github.event.head_commit.message, '[skip ci]') == false |
| 12 | + if: contains(github.event.head_commit.message, '[skip build]') == false |
13 | 13 | name: Build And Install |
14 | 14 | runs-on: ubuntu-latest |
15 | 15 | timeout-minutes: 30 |
|
66 | 66 | path: ./**/build/reports |
67 | 67 |
|
68 | 68 | h2: |
69 | | - if: contains(github.event.head_commit.message, '[skip ci]') == false |
| 69 | + if: contains(github.event.head_commit.message, '[skip build]') == false |
70 | 70 | name: H2 - JDK ${{ matrix.java }} |
71 | 71 | runs-on: ubuntu-latest |
72 | 72 | needs: build |
@@ -131,7 +131,7 @@ jobs: |
131 | 131 | path: ./**/build/reports |
132 | 132 |
|
133 | 133 | mysql: |
134 | | - if: contains(github.event.head_commit.message, '[skip ci]') == false |
| 134 | + if: contains(github.event.head_commit.message, '[skip build]') == false |
135 | 135 | name: MySQL - JDK ${{ matrix.java }} |
136 | 136 | runs-on: ubuntu-latest |
137 | 137 | needs: build |
@@ -210,7 +210,7 @@ jobs: |
210 | 210 | path: ./**/build/reports |
211 | 211 |
|
212 | 212 | postgres: |
213 | | - if: contains(github.event.head_commit.message, '[skip ci]') == false |
| 213 | + if: contains(github.event.head_commit.message, '[skip build]') == false |
214 | 214 | name: PostgreSQL - JDK ${{ matrix.java }} |
215 | 215 | runs-on: ubuntu-latest |
216 | 216 | needs: build |
@@ -285,7 +285,7 @@ jobs: |
285 | 285 | path: ./**/build/reports |
286 | 286 |
|
287 | 287 | sqlserver: |
288 | | - if: contains(github.event.head_commit.message, '[skip ci]') == false |
| 288 | + if: contains(github.event.head_commit.message, '[skip build]') == false |
289 | 289 | name: SQL Server - JDK ${{ matrix.java }} |
290 | 290 | runs-on: ubuntu-latest |
291 | 291 | needs: build |
@@ -365,7 +365,7 @@ jobs: |
365 | 365 | path: ./**/build/reports |
366 | 366 |
|
367 | 367 | additional-features: |
368 | | - if: contains(github.event.head_commit.message, '[skip ci]') == false |
| 368 | + if: contains(github.event.head_commit.message, '[skip build]') == false |
369 | 369 | name: Additional Features |
370 | 370 | runs-on: ubuntu-latest |
371 | 371 | needs: build |
@@ -418,7 +418,7 @@ jobs: |
418 | 418 | path: ./**/build/reports |
419 | 419 |
|
420 | 420 | publish: |
421 | | - if: github.event_name == 'push' && contains(github.event.head_commit.message, '[skip ci]') == false |
| 421 | + if: github.event_name == 'push' && contains(github.event.head_commit.message, '[skip build]') == false |
422 | 422 | name: Publish |
423 | 423 | runs-on: ubuntu-latest |
424 | 424 | needs: [ build, h2, mysql, postgres, sqlserver, additional-features ] |
|
0 commit comments