@catladder/pipeline 2.7.5 → 2.7.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants.js +1 -1
- package/dist/pipeline/createMainPipeline.js +2 -2
- package/dist/rules/index.d.ts +3 -0
- package/dist/rules/index.js +7 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/examples/__snapshots__/cloud-run-http2.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-memory-limit.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-meteor-with-worker.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-nextjs.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-no-cpu-throttling.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-no-service.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-non-public.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-post-stop-job.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-service-custom-vpc-connector.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-service-custom-vpc.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-service-gen2.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-service-increase-timout.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-service-with-volumes.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-storybook.test.ts.snap +5 -15
- package/examples/__snapshots__/cloud-run-with-ngnix.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-with-sql-reuse-db.test.ts.snap +16 -48
- package/examples/__snapshots__/cloud-run-with-sql.test.ts.snap +8 -24
- package/examples/__snapshots__/cloud-run-with-worker.test.ts.snap +8 -24
- package/examples/__snapshots__/custom-build-job-with-tests.test.ts.snap +8 -24
- package/examples/__snapshots__/custom-build-job.test.ts.snap +5 -15
- package/examples/__snapshots__/custom-deploy.test.ts.snap +7 -21
- package/examples/__snapshots__/custom-envs.test.ts.snap +15 -45
- package/examples/__snapshots__/custom-sbom-java.test.ts.snap +5 -15
- package/examples/__snapshots__/custom-verify-job.test.ts.snap +9 -27
- package/examples/__snapshots__/git-submodule.test.ts.snap +8 -24
- package/examples/__snapshots__/kubernetes-application-customization.test.ts.snap +9 -27
- package/examples/__snapshots__/kubernetes-with-cloud-sql.test.ts.snap +9 -27
- package/examples/__snapshots__/kubernetes-with-jobs.test.ts.snap +18 -54
- package/examples/__snapshots__/kubernetes-with-mongodb.test.ts.snap +9 -27
- package/examples/__snapshots__/local-dot-env.test.ts.snap +8 -24
- package/examples/__snapshots__/meteor-kubernetes.test.ts.snap +9 -27
- package/examples/__snapshots__/multiline-var.test.ts.snap +25 -75
- package/examples/__snapshots__/native-app.test.ts.snap +14 -42
- package/examples/__snapshots__/node-build-with-custom-image.test.ts.snap +8 -24
- package/examples/__snapshots__/node-build-with-docker-additions.test.ts.snap +8 -24
- package/examples/__snapshots__/rails-k8s-with-worker-dockerfile.test.ts.snap +8 -24
- package/examples/__snapshots__/rails-k8s-with-worker.test.ts.snap +8 -24
- package/examples/__snapshots__/referencing-other-vars.test.ts.snap +25 -75
- package/examples/__snapshots__/wait-for-other-deploy.test.ts.snap +12 -36
- package/examples/__snapshots__/workspace-api-www-turbo-cache.test.ts.snap +12 -36
- package/examples/__snapshots__/workspace-api-www.test.ts.snap +12 -36
- package/package.json +1 -1
- package/src/pipeline/createMainPipeline.ts +3 -4
- package/src/rules/index.ts +10 -1
|
@@ -89,9 +89,7 @@ api 🛡 audit:
|
|
|
89
89
|
- cd api
|
|
90
90
|
- yarn npm audit --environment production
|
|
91
91
|
rules:
|
|
92
|
-
-
|
|
93
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
94
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
92
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
95
93
|
- if: $CI_MERGE_REQUEST_ID
|
|
96
94
|
needs: []
|
|
97
95
|
retry: &a1
|
|
@@ -135,9 +133,7 @@ api 👮 lint:
|
|
|
135
133
|
paths:
|
|
136
134
|
- api/node_modules
|
|
137
135
|
rules:
|
|
138
|
-
-
|
|
139
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
140
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
136
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
141
137
|
- if: $CI_MERGE_REQUEST_ID
|
|
142
138
|
needs: []
|
|
143
139
|
retry: *a1
|
|
@@ -176,9 +172,7 @@ api 🧪 test:
|
|
|
176
172
|
paths:
|
|
177
173
|
- api/node_modules
|
|
178
174
|
rules:
|
|
179
|
-
-
|
|
180
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
181
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
175
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
182
176
|
- if: $CI_MERGE_REQUEST_ID
|
|
183
177
|
needs: []
|
|
184
178
|
retry: *a1
|
|
@@ -259,9 +253,7 @@ api 🧪 test:
|
|
|
259
253
|
when: always
|
|
260
254
|
reports: {}
|
|
261
255
|
rules:
|
|
262
|
-
-
|
|
263
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
264
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
256
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
265
257
|
needs: []
|
|
266
258
|
retry: *a1
|
|
267
259
|
interruptible: true
|
|
@@ -318,9 +310,7 @@ api 🧪 test:
|
|
|
318
310
|
paths:
|
|
319
311
|
- api/.yarn
|
|
320
312
|
rules:
|
|
321
|
-
-
|
|
322
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
323
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
313
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
324
314
|
needs:
|
|
325
315
|
- 'api 🔨 app | dev '
|
|
326
316
|
retry: *a1
|
|
@@ -337,9 +327,7 @@ api 🧪 test:
|
|
|
337
327
|
paths:
|
|
338
328
|
- __sbom.json
|
|
339
329
|
rules:
|
|
340
|
-
-
|
|
341
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
342
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
330
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
343
331
|
needs: []
|
|
344
332
|
retry: *a1
|
|
345
333
|
interruptible: true
|
|
@@ -433,10 +421,8 @@ api 🧪 test:
|
|
|
433
421
|
reports:
|
|
434
422
|
dotenv: gitlab_environment.env
|
|
435
423
|
rules:
|
|
436
|
-
- when: never
|
|
437
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
438
424
|
- when: on_success
|
|
439
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
425
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
440
426
|
needs:
|
|
441
427
|
- job: api 👮 lint
|
|
442
428
|
artifacts: false
|
|
@@ -479,10 +465,8 @@ api 🧪 test:
|
|
|
479
465
|
rules:
|
|
480
466
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
481
467
|
when: on_success
|
|
482
|
-
- when: never
|
|
483
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
484
468
|
- when: manual
|
|
485
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
469
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
486
470
|
needs: []
|
|
487
471
|
retry: *a1
|
|
488
472
|
interruptible: true
|
|
@@ -89,9 +89,7 @@ api 🛡 audit:
|
|
|
89
89
|
- cd api
|
|
90
90
|
- yarn npm audit --environment production
|
|
91
91
|
rules:
|
|
92
|
-
-
|
|
93
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
94
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
92
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
95
93
|
- if: $CI_MERGE_REQUEST_ID
|
|
96
94
|
needs: []
|
|
97
95
|
retry: &a1
|
|
@@ -135,9 +133,7 @@ api 👮 lint:
|
|
|
135
133
|
paths:
|
|
136
134
|
- api/node_modules
|
|
137
135
|
rules:
|
|
138
|
-
-
|
|
139
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
140
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
136
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
141
137
|
- if: $CI_MERGE_REQUEST_ID
|
|
142
138
|
needs: []
|
|
143
139
|
retry: *a1
|
|
@@ -176,9 +172,7 @@ api 🧪 test:
|
|
|
176
172
|
paths:
|
|
177
173
|
- api/node_modules
|
|
178
174
|
rules:
|
|
179
|
-
-
|
|
180
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
181
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
175
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
182
176
|
- if: $CI_MERGE_REQUEST_ID
|
|
183
177
|
needs: []
|
|
184
178
|
retry: *a1
|
|
@@ -259,9 +253,7 @@ api 🧪 test:
|
|
|
259
253
|
when: always
|
|
260
254
|
reports: {}
|
|
261
255
|
rules:
|
|
262
|
-
-
|
|
263
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
264
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
256
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
265
257
|
needs: []
|
|
266
258
|
retry: *a1
|
|
267
259
|
interruptible: true
|
|
@@ -318,9 +310,7 @@ api 🧪 test:
|
|
|
318
310
|
paths:
|
|
319
311
|
- api/.yarn
|
|
320
312
|
rules:
|
|
321
|
-
-
|
|
322
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
323
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
313
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
324
314
|
needs:
|
|
325
315
|
- 'api 🔨 app | dev '
|
|
326
316
|
retry: *a1
|
|
@@ -337,9 +327,7 @@ api 🧪 test:
|
|
|
337
327
|
paths:
|
|
338
328
|
- __sbom.json
|
|
339
329
|
rules:
|
|
340
|
-
-
|
|
341
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
342
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
330
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
343
331
|
needs: []
|
|
344
332
|
retry: *a1
|
|
345
333
|
interruptible: true
|
|
@@ -433,10 +421,8 @@ api 🧪 test:
|
|
|
433
421
|
reports:
|
|
434
422
|
dotenv: gitlab_environment.env
|
|
435
423
|
rules:
|
|
436
|
-
- when: never
|
|
437
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
438
424
|
- when: on_success
|
|
439
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
425
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
440
426
|
needs:
|
|
441
427
|
- job: api 👮 lint
|
|
442
428
|
artifacts: false
|
|
@@ -479,10 +465,8 @@ api 🧪 test:
|
|
|
479
465
|
rules:
|
|
480
466
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
481
467
|
when: on_success
|
|
482
|
-
- when: never
|
|
483
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
484
468
|
- when: manual
|
|
485
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
469
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
486
470
|
needs: []
|
|
487
471
|
retry: *a1
|
|
488
472
|
interruptible: true
|
|
@@ -89,9 +89,7 @@ web 🛡 audit:
|
|
|
89
89
|
- cd web
|
|
90
90
|
- yarn npm audit --environment production
|
|
91
91
|
rules:
|
|
92
|
-
-
|
|
93
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
94
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
92
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
95
93
|
- if: $CI_MERGE_REQUEST_ID
|
|
96
94
|
needs: []
|
|
97
95
|
retry: &a1
|
|
@@ -135,9 +133,7 @@ web 👮 lint:
|
|
|
135
133
|
paths:
|
|
136
134
|
- web/node_modules
|
|
137
135
|
rules:
|
|
138
|
-
-
|
|
139
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
140
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
136
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
141
137
|
- if: $CI_MERGE_REQUEST_ID
|
|
142
138
|
needs: []
|
|
143
139
|
retry: *a1
|
|
@@ -176,9 +172,7 @@ web 🧪 test:
|
|
|
176
172
|
paths:
|
|
177
173
|
- web/node_modules
|
|
178
174
|
rules:
|
|
179
|
-
-
|
|
180
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
181
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
175
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
182
176
|
- if: $CI_MERGE_REQUEST_ID
|
|
183
177
|
needs: []
|
|
184
178
|
retry: *a1
|
|
@@ -270,9 +264,7 @@ web 🧪 test:
|
|
|
270
264
|
when: always
|
|
271
265
|
reports: {}
|
|
272
266
|
rules:
|
|
273
|
-
-
|
|
274
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
275
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
267
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
276
268
|
needs: []
|
|
277
269
|
retry: *a1
|
|
278
270
|
interruptible: true
|
|
@@ -316,9 +308,7 @@ web 🧪 test:
|
|
|
316
308
|
- docker push $DOCKER_CACHE_IMAGE
|
|
317
309
|
- collapseable_section_end "docker-push"
|
|
318
310
|
rules:
|
|
319
|
-
-
|
|
320
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
321
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
311
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
322
312
|
needs:
|
|
323
313
|
- 'web 🔨 app | dev '
|
|
324
314
|
retry: *a1
|
|
@@ -335,9 +325,7 @@ web 🧪 test:
|
|
|
335
325
|
paths:
|
|
336
326
|
- __sbom.json
|
|
337
327
|
rules:
|
|
338
|
-
-
|
|
339
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
340
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
328
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
341
329
|
needs: []
|
|
342
330
|
retry: *a1
|
|
343
331
|
interruptible: true
|
|
@@ -432,10 +420,8 @@ web 🧪 test:
|
|
|
432
420
|
reports:
|
|
433
421
|
dotenv: gitlab_environment.env
|
|
434
422
|
rules:
|
|
435
|
-
- when: never
|
|
436
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
437
423
|
- when: on_success
|
|
438
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
424
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
439
425
|
needs:
|
|
440
426
|
- job: web 👮 lint
|
|
441
427
|
artifacts: false
|
|
@@ -479,10 +465,8 @@ web 🧪 test:
|
|
|
479
465
|
rules:
|
|
480
466
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
481
467
|
when: on_success
|
|
482
|
-
- when: never
|
|
483
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
484
468
|
- when: manual
|
|
485
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
469
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
486
470
|
needs: []
|
|
487
471
|
retry: *a1
|
|
488
472
|
interruptible: true
|
|
@@ -89,9 +89,7 @@ www 🛡 audit:
|
|
|
89
89
|
- cd www
|
|
90
90
|
- yarn npm audit --environment production
|
|
91
91
|
rules:
|
|
92
|
-
-
|
|
93
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
94
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
92
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
95
93
|
- if: $CI_MERGE_REQUEST_ID
|
|
96
94
|
needs: []
|
|
97
95
|
retry: &a1
|
|
@@ -135,9 +133,7 @@ www 👮 lint:
|
|
|
135
133
|
paths:
|
|
136
134
|
- www/node_modules
|
|
137
135
|
rules:
|
|
138
|
-
-
|
|
139
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
140
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
136
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
141
137
|
- if: $CI_MERGE_REQUEST_ID
|
|
142
138
|
needs: []
|
|
143
139
|
retry: *a1
|
|
@@ -176,9 +172,7 @@ www 🧪 test:
|
|
|
176
172
|
paths:
|
|
177
173
|
- www/node_modules
|
|
178
174
|
rules:
|
|
179
|
-
-
|
|
180
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
181
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
175
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
182
176
|
- if: $CI_MERGE_REQUEST_ID
|
|
183
177
|
needs: []
|
|
184
178
|
retry: *a1
|
|
@@ -263,9 +257,7 @@ www 🧪 test:
|
|
|
263
257
|
when: always
|
|
264
258
|
reports: {}
|
|
265
259
|
rules:
|
|
266
|
-
-
|
|
267
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
268
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
260
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
269
261
|
needs: []
|
|
270
262
|
retry: *a1
|
|
271
263
|
interruptible: true
|
|
@@ -322,9 +314,7 @@ www 🧪 test:
|
|
|
322
314
|
paths:
|
|
323
315
|
- www/.yarn
|
|
324
316
|
rules:
|
|
325
|
-
-
|
|
326
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
327
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
317
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
328
318
|
needs:
|
|
329
319
|
- 'www 🔨 app | dev '
|
|
330
320
|
retry: *a1
|
|
@@ -341,9 +331,7 @@ www 🧪 test:
|
|
|
341
331
|
paths:
|
|
342
332
|
- __sbom.json
|
|
343
333
|
rules:
|
|
344
|
-
-
|
|
345
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
346
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
334
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
347
335
|
needs: []
|
|
348
336
|
retry: *a1
|
|
349
337
|
interruptible: true
|
|
@@ -437,10 +425,8 @@ www 🧪 test:
|
|
|
437
425
|
reports:
|
|
438
426
|
dotenv: gitlab_environment.env
|
|
439
427
|
rules:
|
|
440
|
-
- when: never
|
|
441
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
442
428
|
- when: on_success
|
|
443
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
429
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
444
430
|
needs:
|
|
445
431
|
- job: www 👮 lint
|
|
446
432
|
artifacts: false
|
|
@@ -483,10 +469,8 @@ www 🧪 test:
|
|
|
483
469
|
rules:
|
|
484
470
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
485
471
|
when: on_success
|
|
486
|
-
- when: never
|
|
487
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
488
472
|
- when: manual
|
|
489
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
473
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
490
474
|
needs: []
|
|
491
475
|
retry: *a1
|
|
492
476
|
interruptible: true
|
|
@@ -89,9 +89,7 @@ api 🛡 audit:
|
|
|
89
89
|
- cd api
|
|
90
90
|
- yarn npm audit --environment production
|
|
91
91
|
rules:
|
|
92
|
-
-
|
|
93
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
94
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
92
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
95
93
|
- if: $CI_MERGE_REQUEST_ID
|
|
96
94
|
needs: []
|
|
97
95
|
retry: &a1
|
|
@@ -135,9 +133,7 @@ api 👮 lint:
|
|
|
135
133
|
paths:
|
|
136
134
|
- api/node_modules
|
|
137
135
|
rules:
|
|
138
|
-
-
|
|
139
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
140
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
136
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
141
137
|
- if: $CI_MERGE_REQUEST_ID
|
|
142
138
|
needs: []
|
|
143
139
|
retry: *a1
|
|
@@ -176,9 +172,7 @@ api 🧪 test:
|
|
|
176
172
|
paths:
|
|
177
173
|
- api/node_modules
|
|
178
174
|
rules:
|
|
179
|
-
-
|
|
180
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
181
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
175
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
182
176
|
- if: $CI_MERGE_REQUEST_ID
|
|
183
177
|
needs: []
|
|
184
178
|
retry: *a1
|
|
@@ -259,9 +253,7 @@ api 🧪 test:
|
|
|
259
253
|
when: always
|
|
260
254
|
reports: {}
|
|
261
255
|
rules:
|
|
262
|
-
-
|
|
263
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
264
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
256
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
265
257
|
needs: []
|
|
266
258
|
retry: *a1
|
|
267
259
|
interruptible: true
|
|
@@ -318,9 +310,7 @@ api 🧪 test:
|
|
|
318
310
|
paths:
|
|
319
311
|
- api/.yarn
|
|
320
312
|
rules:
|
|
321
|
-
-
|
|
322
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
323
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
313
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
324
314
|
needs:
|
|
325
315
|
- 'api 🔨 app | dev '
|
|
326
316
|
retry: *a1
|
|
@@ -337,9 +327,7 @@ api 🧪 test:
|
|
|
337
327
|
paths:
|
|
338
328
|
- __sbom.json
|
|
339
329
|
rules:
|
|
340
|
-
-
|
|
341
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
342
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
330
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
343
331
|
needs: []
|
|
344
332
|
retry: *a1
|
|
345
333
|
interruptible: true
|
|
@@ -433,10 +421,8 @@ api 🧪 test:
|
|
|
433
421
|
reports:
|
|
434
422
|
dotenv: gitlab_environment.env
|
|
435
423
|
rules:
|
|
436
|
-
- when: never
|
|
437
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
438
424
|
- when: on_success
|
|
439
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
425
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
440
426
|
needs:
|
|
441
427
|
- job: api 👮 lint
|
|
442
428
|
artifacts: false
|
|
@@ -479,10 +465,8 @@ api 🧪 test:
|
|
|
479
465
|
rules:
|
|
480
466
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
481
467
|
when: on_success
|
|
482
|
-
- when: never
|
|
483
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
484
468
|
- when: manual
|
|
485
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
469
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
486
470
|
needs: []
|
|
487
471
|
retry: *a1
|
|
488
472
|
interruptible: true
|
|
@@ -89,9 +89,7 @@ api 🛡 audit:
|
|
|
89
89
|
- cd app
|
|
90
90
|
- yarn npm audit --environment production
|
|
91
91
|
rules:
|
|
92
|
-
-
|
|
93
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
94
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
92
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
95
93
|
- if: $CI_MERGE_REQUEST_ID
|
|
96
94
|
needs: []
|
|
97
95
|
retry: &a1
|
|
@@ -135,9 +133,7 @@ api 👮 lint:
|
|
|
135
133
|
paths:
|
|
136
134
|
- app/node_modules
|
|
137
135
|
rules:
|
|
138
|
-
-
|
|
139
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
140
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
136
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
141
137
|
- if: $CI_MERGE_REQUEST_ID
|
|
142
138
|
needs: []
|
|
143
139
|
retry: *a1
|
|
@@ -176,9 +172,7 @@ api 🧪 test:
|
|
|
176
172
|
paths:
|
|
177
173
|
- app/node_modules
|
|
178
174
|
rules:
|
|
179
|
-
-
|
|
180
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
181
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
175
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
182
176
|
- if: $CI_MERGE_REQUEST_ID
|
|
183
177
|
needs: []
|
|
184
178
|
retry: *a1
|
|
@@ -261,9 +255,7 @@ api 🧪 test:
|
|
|
261
255
|
when: always
|
|
262
256
|
reports: {}
|
|
263
257
|
rules:
|
|
264
|
-
-
|
|
265
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
266
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
258
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
267
259
|
needs: []
|
|
268
260
|
retry: *a1
|
|
269
261
|
interruptible: true
|
|
@@ -320,9 +312,7 @@ api 🧪 test:
|
|
|
320
312
|
paths:
|
|
321
313
|
- app/.yarn
|
|
322
314
|
rules:
|
|
323
|
-
-
|
|
324
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
325
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
315
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
326
316
|
needs:
|
|
327
317
|
- 'api 🔨 app | dev '
|
|
328
318
|
retry: *a1
|
|
@@ -339,9 +329,7 @@ api 🧪 test:
|
|
|
339
329
|
paths:
|
|
340
330
|
- __sbom.json
|
|
341
331
|
rules:
|
|
342
|
-
-
|
|
343
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
344
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
332
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
345
333
|
needs: []
|
|
346
334
|
retry: *a1
|
|
347
335
|
interruptible: true
|
|
@@ -458,10 +446,8 @@ api 🧪 test:
|
|
|
458
446
|
reports:
|
|
459
447
|
dotenv: gitlab_environment.env
|
|
460
448
|
rules:
|
|
461
|
-
- when: never
|
|
462
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
463
449
|
- when: on_success
|
|
464
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
450
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
465
451
|
needs:
|
|
466
452
|
- job: api 👮 lint
|
|
467
453
|
artifacts: false
|
|
@@ -506,10 +492,8 @@ api 🧪 test:
|
|
|
506
492
|
rules:
|
|
507
493
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
508
494
|
when: on_success
|
|
509
|
-
- when: never
|
|
510
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
511
495
|
- when: manual
|
|
512
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
496
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
513
497
|
needs: []
|
|
514
498
|
retry: *a1
|
|
515
499
|
interruptible: true
|
|
@@ -89,9 +89,7 @@ api 🛡 audit:
|
|
|
89
89
|
- cd api
|
|
90
90
|
- yarn npm audit --environment production
|
|
91
91
|
rules:
|
|
92
|
-
-
|
|
93
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
94
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
92
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
95
93
|
- if: $CI_MERGE_REQUEST_ID
|
|
96
94
|
needs: []
|
|
97
95
|
retry: &a1
|
|
@@ -135,9 +133,7 @@ api 👮 lint:
|
|
|
135
133
|
paths:
|
|
136
134
|
- api/node_modules
|
|
137
135
|
rules:
|
|
138
|
-
-
|
|
139
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
140
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
136
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
141
137
|
- if: $CI_MERGE_REQUEST_ID
|
|
142
138
|
needs: []
|
|
143
139
|
retry: *a1
|
|
@@ -176,9 +172,7 @@ api 🧪 test:
|
|
|
176
172
|
paths:
|
|
177
173
|
- api/node_modules
|
|
178
174
|
rules:
|
|
179
|
-
-
|
|
180
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
181
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
175
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
182
176
|
- if: $CI_MERGE_REQUEST_ID
|
|
183
177
|
needs: []
|
|
184
178
|
retry: *a1
|
|
@@ -259,9 +253,7 @@ api 🧪 test:
|
|
|
259
253
|
when: always
|
|
260
254
|
reports: {}
|
|
261
255
|
rules:
|
|
262
|
-
-
|
|
263
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
264
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
256
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
265
257
|
needs: []
|
|
266
258
|
retry: *a1
|
|
267
259
|
interruptible: true
|
|
@@ -318,9 +310,7 @@ api 🧪 test:
|
|
|
318
310
|
paths:
|
|
319
311
|
- api/.yarn
|
|
320
312
|
rules:
|
|
321
|
-
-
|
|
322
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
323
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
313
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
324
314
|
needs:
|
|
325
315
|
- 'api 🔨 app | dev '
|
|
326
316
|
retry: *a1
|
|
@@ -337,9 +327,7 @@ api 🧪 test:
|
|
|
337
327
|
paths:
|
|
338
328
|
- __sbom.json
|
|
339
329
|
rules:
|
|
340
|
-
-
|
|
341
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
342
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
330
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
343
331
|
needs: []
|
|
344
332
|
retry: *a1
|
|
345
333
|
interruptible: true
|
|
@@ -433,10 +421,8 @@ api 🧪 test:
|
|
|
433
421
|
reports:
|
|
434
422
|
dotenv: gitlab_environment.env
|
|
435
423
|
rules:
|
|
436
|
-
- when: never
|
|
437
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
438
424
|
- when: on_success
|
|
439
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
425
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
440
426
|
needs:
|
|
441
427
|
- job: api 👮 lint
|
|
442
428
|
artifacts: false
|
|
@@ -479,10 +465,8 @@ api 🧪 test:
|
|
|
479
465
|
rules:
|
|
480
466
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
481
467
|
when: on_success
|
|
482
|
-
- when: never
|
|
483
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
484
468
|
- when: manual
|
|
485
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
469
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
486
470
|
needs: []
|
|
487
471
|
retry: *a1
|
|
488
472
|
interruptible: true
|