@catladder/pipeline 2.7.4 → 2.7.6
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
|
|
@@ -239,9 +233,7 @@ api 🧪 test:
|
|
|
239
233
|
when: always
|
|
240
234
|
reports: {}
|
|
241
235
|
rules:
|
|
242
|
-
-
|
|
243
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
244
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
236
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
245
237
|
needs: []
|
|
246
238
|
retry: *a1
|
|
247
239
|
interruptible: true
|
|
@@ -298,9 +290,7 @@ api 🧪 test:
|
|
|
298
290
|
paths:
|
|
299
291
|
- api/.yarn
|
|
300
292
|
rules:
|
|
301
|
-
-
|
|
302
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
303
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
293
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
304
294
|
needs:
|
|
305
295
|
- 'api 🔨 app | dev '
|
|
306
296
|
retry: *a1
|
|
@@ -317,9 +307,7 @@ api 🧪 test:
|
|
|
317
307
|
paths:
|
|
318
308
|
- __sbom.json
|
|
319
309
|
rules:
|
|
320
|
-
-
|
|
321
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
322
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
310
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
323
311
|
needs: []
|
|
324
312
|
retry: *a1
|
|
325
313
|
interruptible: true
|
|
@@ -441,10 +429,8 @@ api 🧪 test:
|
|
|
441
429
|
reports:
|
|
442
430
|
dotenv: gitlab_environment.env
|
|
443
431
|
rules:
|
|
444
|
-
- when: never
|
|
445
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
446
432
|
- when: on_success
|
|
447
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
433
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
448
434
|
needs:
|
|
449
435
|
- job: api 👮 lint
|
|
450
436
|
artifacts: false
|
|
@@ -505,10 +491,8 @@ api 🧪 test:
|
|
|
505
491
|
rules:
|
|
506
492
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
507
493
|
when: on_success
|
|
508
|
-
- when: never
|
|
509
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
510
494
|
- when: manual
|
|
511
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
495
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
512
496
|
needs: []
|
|
513
497
|
retry: *a1
|
|
514
498
|
interruptible: true
|
|
@@ -553,10 +537,8 @@ api 🧪 test:
|
|
|
553
537
|
name: dev/api
|
|
554
538
|
action: access
|
|
555
539
|
rules:
|
|
556
|
-
- when: never
|
|
557
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
558
540
|
- when: manual
|
|
559
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
541
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
560
542
|
needs: []
|
|
561
543
|
retry: *a1
|
|
562
544
|
interruptible: true
|
|
@@ -1655,9 +1637,7 @@ www 🛡 audit:
|
|
|
1655
1637
|
- cd www
|
|
1656
1638
|
- yarn npm audit --environment production
|
|
1657
1639
|
rules:
|
|
1658
|
-
-
|
|
1659
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1660
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1640
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1661
1641
|
- if: $CI_MERGE_REQUEST_ID
|
|
1662
1642
|
needs: []
|
|
1663
1643
|
retry: *a1
|
|
@@ -1697,9 +1677,7 @@ www 👮 lint:
|
|
|
1697
1677
|
paths:
|
|
1698
1678
|
- www/node_modules
|
|
1699
1679
|
rules:
|
|
1700
|
-
-
|
|
1701
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1702
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1680
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1703
1681
|
- if: $CI_MERGE_REQUEST_ID
|
|
1704
1682
|
needs: []
|
|
1705
1683
|
retry: *a1
|
|
@@ -1738,9 +1716,7 @@ www 🧪 test:
|
|
|
1738
1716
|
paths:
|
|
1739
1717
|
- www/node_modules
|
|
1740
1718
|
rules:
|
|
1741
|
-
-
|
|
1742
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1743
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1719
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1744
1720
|
- if: $CI_MERGE_REQUEST_ID
|
|
1745
1721
|
needs: []
|
|
1746
1722
|
retry: *a1
|
|
@@ -1819,9 +1795,7 @@ www 🧪 test:
|
|
|
1819
1795
|
when: always
|
|
1820
1796
|
reports: {}
|
|
1821
1797
|
rules:
|
|
1822
|
-
-
|
|
1823
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1824
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1798
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1825
1799
|
needs: []
|
|
1826
1800
|
retry: *a1
|
|
1827
1801
|
interruptible: true
|
|
@@ -1878,9 +1852,7 @@ www 🧪 test:
|
|
|
1878
1852
|
paths:
|
|
1879
1853
|
- www/.yarn
|
|
1880
1854
|
rules:
|
|
1881
|
-
-
|
|
1882
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1883
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1855
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1884
1856
|
needs:
|
|
1885
1857
|
- 'www 🔨 app | dev '
|
|
1886
1858
|
retry: *a1
|
|
@@ -1897,9 +1869,7 @@ www 🧪 test:
|
|
|
1897
1869
|
paths:
|
|
1898
1870
|
- __sbom.json
|
|
1899
1871
|
rules:
|
|
1900
|
-
-
|
|
1901
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1902
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1872
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1903
1873
|
needs: []
|
|
1904
1874
|
retry: *a1
|
|
1905
1875
|
interruptible: true
|
|
@@ -2011,10 +1981,8 @@ www 🧪 test:
|
|
|
2011
1981
|
reports:
|
|
2012
1982
|
dotenv: gitlab_environment.env
|
|
2013
1983
|
rules:
|
|
2014
|
-
- when: never
|
|
2015
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
2016
1984
|
- when: on_success
|
|
2017
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1985
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
2018
1986
|
needs:
|
|
2019
1987
|
- job: www 👮 lint
|
|
2020
1988
|
artifacts: false
|
|
@@ -2075,10 +2043,8 @@ www 🧪 test:
|
|
|
2075
2043
|
rules:
|
|
2076
2044
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
2077
2045
|
when: on_success
|
|
2078
|
-
- when: never
|
|
2079
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
2080
2046
|
- when: manual
|
|
2081
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
2047
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
2082
2048
|
needs: []
|
|
2083
2049
|
retry: *a1
|
|
2084
2050
|
interruptible: true
|
|
@@ -2123,10 +2089,8 @@ www 🧪 test:
|
|
|
2123
2089
|
name: dev/www
|
|
2124
2090
|
action: access
|
|
2125
2091
|
rules:
|
|
2126
|
-
- when: never
|
|
2127
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
2128
2092
|
- when: manual
|
|
2129
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
2093
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
2130
2094
|
needs: []
|
|
2131
2095
|
retry: *a1
|
|
2132
2096
|
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
|
|
@@ -241,9 +235,7 @@ api 🧪 test:
|
|
|
241
235
|
when: always
|
|
242
236
|
reports: {}
|
|
243
237
|
rules:
|
|
244
|
-
-
|
|
245
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
246
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
238
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
247
239
|
needs: []
|
|
248
240
|
retry: *a1
|
|
249
241
|
interruptible: true
|
|
@@ -300,9 +292,7 @@ api 🧪 test:
|
|
|
300
292
|
paths:
|
|
301
293
|
- api/.yarn
|
|
302
294
|
rules:
|
|
303
|
-
-
|
|
304
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
305
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
295
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
306
296
|
needs:
|
|
307
297
|
- 'api 🔨 app | dev '
|
|
308
298
|
retry: *a1
|
|
@@ -319,9 +309,7 @@ api 🧪 test:
|
|
|
319
309
|
paths:
|
|
320
310
|
- __sbom.json
|
|
321
311
|
rules:
|
|
322
|
-
-
|
|
323
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
324
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
312
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
325
313
|
needs: []
|
|
326
314
|
retry: *a1
|
|
327
315
|
interruptible: true
|
|
@@ -477,10 +465,8 @@ api 🧪 test:
|
|
|
477
465
|
reports:
|
|
478
466
|
dotenv: gitlab_environment.env
|
|
479
467
|
rules:
|
|
480
|
-
- when: never
|
|
481
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
482
468
|
- when: on_success
|
|
483
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
469
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
484
470
|
needs:
|
|
485
471
|
- job: api 👮 lint
|
|
486
472
|
artifacts: false
|
|
@@ -543,10 +529,8 @@ api 🧪 test:
|
|
|
543
529
|
rules:
|
|
544
530
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
545
531
|
when: on_success
|
|
546
|
-
- when: never
|
|
547
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
548
532
|
- when: manual
|
|
549
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
533
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
550
534
|
needs: []
|
|
551
535
|
retry: *a1
|
|
552
536
|
interruptible: true
|
|
@@ -593,10 +577,8 @@ api 🧪 test:
|
|
|
593
577
|
name: dev/api
|
|
594
578
|
action: access
|
|
595
579
|
rules:
|
|
596
|
-
- when: never
|
|
597
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
598
580
|
- when: manual
|
|
599
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
581
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
600
582
|
needs: []
|
|
601
583
|
retry: *a1
|
|
602
584
|
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
|
|
@@ -240,9 +234,7 @@ api 🧪 test:
|
|
|
240
234
|
when: always
|
|
241
235
|
reports: {}
|
|
242
236
|
rules:
|
|
243
|
-
-
|
|
244
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
245
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
237
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
246
238
|
needs: []
|
|
247
239
|
retry: *a1
|
|
248
240
|
interruptible: true
|
|
@@ -299,9 +291,7 @@ api 🧪 test:
|
|
|
299
291
|
paths:
|
|
300
292
|
- api/.yarn
|
|
301
293
|
rules:
|
|
302
|
-
-
|
|
303
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
304
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
294
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
305
295
|
needs:
|
|
306
296
|
- 'api 🔨 app | dev '
|
|
307
297
|
retry: *a1
|
|
@@ -318,9 +308,7 @@ api 🧪 test:
|
|
|
318
308
|
paths:
|
|
319
309
|
- __sbom.json
|
|
320
310
|
rules:
|
|
321
|
-
-
|
|
322
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
323
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
311
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
324
312
|
needs: []
|
|
325
313
|
retry: *a1
|
|
326
314
|
interruptible: true
|
|
@@ -414,10 +402,8 @@ api 🧪 test:
|
|
|
414
402
|
reports:
|
|
415
403
|
dotenv: gitlab_environment.env
|
|
416
404
|
rules:
|
|
417
|
-
- when: never
|
|
418
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
419
405
|
- when: on_success
|
|
420
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
406
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
421
407
|
needs:
|
|
422
408
|
- job: api 👮 lint
|
|
423
409
|
artifacts: false
|
|
@@ -460,10 +446,8 @@ api 🧪 test:
|
|
|
460
446
|
rules:
|
|
461
447
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
462
448
|
when: on_success
|
|
463
|
-
- when: never
|
|
464
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
465
449
|
- when: manual
|
|
466
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
450
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
467
451
|
needs: []
|
|
468
452
|
retry: *a1
|
|
469
453
|
interruptible: true
|
|
@@ -89,9 +89,7 @@ web 🛡 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 @@ web 👮 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 @@ web 🧪 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
|
|
@@ -251,9 +245,7 @@ web 🧪 test:
|
|
|
251
245
|
when: always
|
|
252
246
|
reports: {}
|
|
253
247
|
rules:
|
|
254
|
-
-
|
|
255
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
256
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
248
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
257
249
|
needs: []
|
|
258
250
|
retry: *a1
|
|
259
251
|
interruptible: true
|
|
@@ -297,9 +289,7 @@ web 🧪 test:
|
|
|
297
289
|
- docker push $DOCKER_CACHE_IMAGE
|
|
298
290
|
- collapseable_section_end "docker-push"
|
|
299
291
|
rules:
|
|
300
|
-
-
|
|
301
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
302
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
292
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
303
293
|
needs:
|
|
304
294
|
- 'web 🔨 app | dev '
|
|
305
295
|
retry: *a1
|
|
@@ -316,9 +306,7 @@ web 🧪 test:
|
|
|
316
306
|
paths:
|
|
317
307
|
- __sbom.json
|
|
318
308
|
rules:
|
|
319
|
-
-
|
|
320
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
321
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
309
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
322
310
|
needs: []
|
|
323
311
|
retry: *a1
|
|
324
312
|
interruptible: true
|
|
@@ -462,10 +450,8 @@ web 🧪 test:
|
|
|
462
450
|
reports:
|
|
463
451
|
dotenv: gitlab_environment.env
|
|
464
452
|
rules:
|
|
465
|
-
- when: never
|
|
466
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
467
453
|
- when: on_success
|
|
468
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
454
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
469
455
|
needs:
|
|
470
456
|
- job: web 👮 lint
|
|
471
457
|
artifacts: false
|
|
@@ -527,10 +513,8 @@ web 🧪 test:
|
|
|
527
513
|
rules:
|
|
528
514
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
529
515
|
when: on_success
|
|
530
|
-
- when: never
|
|
531
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
532
516
|
- when: manual
|
|
533
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
517
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
534
518
|
needs: []
|
|
535
519
|
retry: *a1
|
|
536
520
|
interruptible: true
|
|
@@ -576,10 +560,8 @@ web 🧪 test:
|
|
|
576
560
|
name: dev/web
|
|
577
561
|
action: access
|
|
578
562
|
rules:
|
|
579
|
-
- when: never
|
|
580
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
581
563
|
- when: manual
|
|
582
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
564
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
583
565
|
needs: []
|
|
584
566
|
retry: *a1
|
|
585
567
|
interruptible: true
|