|
23 | 23 | build-activemq-docker-image:
|
24 | 24 | runs-on: ubuntu-latest
|
25 | 25 | timeout-minutes: 5
|
26 |
| - if: github.actor != 'dependabot[bot]' |
| 26 | + if: github.actor != 'dependabot[bot]' && contains(github.event.comment.body, '/skiprelease') && contains(github.event.comment.title, '[skiprelease]') |
27 | 27 | steps:
|
28 | 28 | - uses: actions/checkout@v4
|
29 | 29 | - name: Set up QEMU
|
|
53 | 53 | build-geoserver-docker-image:
|
54 | 54 | runs-on: ubuntu-latest
|
55 | 55 | timeout-minutes: 15
|
56 |
| - if: github.actor != 'dependabot[bot]' |
| 56 | + if: github.actor != 'dependabot[bot]' && contains(github.event.comment.body, '/skiprelease') && contains(github.event.comment.title, '[skiprelease]') |
57 | 57 | strategy:
|
58 | 58 | matrix:
|
59 | 59 | geoserverMajorVersion:
|
@@ -127,7 +127,7 @@ jobs:
|
127 | 127 | scan_image:
|
128 | 128 | runs-on: ubuntu-latest
|
129 | 129 | timeout-minutes: 20
|
130 |
| - if: github.actor != 'dependabot[bot]' |
| 130 | + if: github.actor != 'dependabot[bot]' && contains(github.event.comment.body, '/skiprelease') && contains(github.event.comment.title, '[skiprelease]') |
131 | 131 | needs: [build-geoserver-docker-image, run-scenario-tests]
|
132 | 132 | steps:
|
133 | 133 | - uses: actions/checkout@v4
|
@@ -157,7 +157,7 @@ jobs:
|
157 | 157 | run-scenario-tests:
|
158 | 158 | runs-on: ubuntu-latest
|
159 | 159 | timeout-minutes: 20
|
160 |
| - if: github.actor != 'dependabot[bot]' |
| 160 | + if: github.actor != 'dependabot[bot]' && contains(github.event.comment.body, '/skiprelease') && contains(github.event.comment.title, '[skiprelease]') |
161 | 161 | needs: [ build-geoserver-docker-image, build-activemq-docker-image]
|
162 | 162 | strategy:
|
163 | 163 | matrix:
|
@@ -200,7 +200,7 @@ jobs:
|
200 | 200 | bash ./test.sh
|
201 | 201 |
|
202 | 202 | push-internal-pr-images:
|
203 |
| - if: github.event_name == 'pull_request' && github.event.pull_request.base.repo.url == github.event.pull_request.head.repo.url && github.actor != 'dependabot[bot]' |
| 203 | + if: github.event_name == 'pull_request' && github.event.pull_request.base.repo.url == github.event.pull_request.head.repo.url && github.actor != 'dependabot[bot]' && contains(github.event.comment.body, '/skiprelease') && contains(github.event.comment.title, '[skiprelease]') |
204 | 204 | runs-on: ubuntu-latest
|
205 | 205 | timeout-minutes: 20
|
206 | 206 | needs: [ build-geoserver-docker-image, run-scenario-tests ]
|
|
0 commit comments