@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
|
@@ -86,9 +86,7 @@ app ๐ก audit:
|
|
|
86
86
|
- gem install bundler-audit
|
|
87
87
|
- bundle audit check
|
|
88
88
|
rules:
|
|
89
|
-
-
|
|
90
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
91
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
89
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
92
90
|
- if: $CI_MERGE_REQUEST_ID
|
|
93
91
|
needs: []
|
|
94
92
|
retry: &a1
|
|
@@ -117,9 +115,7 @@ app ๐ฎ lint:
|
|
|
117
115
|
paths:
|
|
118
116
|
- tmp/cache
|
|
119
117
|
rules:
|
|
120
|
-
-
|
|
121
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
122
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
118
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
123
119
|
- if: $CI_MERGE_REQUEST_ID
|
|
124
120
|
needs: []
|
|
125
121
|
retry: *a1
|
|
@@ -137,9 +133,7 @@ app ๐งช test:
|
|
|
137
133
|
- bundle exec rspec
|
|
138
134
|
cache: *a2
|
|
139
135
|
rules:
|
|
140
|
-
-
|
|
141
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
142
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
136
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
143
137
|
- if: $CI_MERGE_REQUEST_ID
|
|
144
138
|
needs: []
|
|
145
139
|
retry: *a1
|
|
@@ -178,9 +172,7 @@ app ๐งช test:
|
|
|
178
172
|
- sed --in-place 's|git@\\([^:]*\\):|https://\\1/|g' Gemfile Gemfile.lock
|
|
179
173
|
- 'pack build "$DOCKER_IMAGE:$DOCKER_IMAGE_TAG" --builder ''heroku/builder:22'' --publish --cache-image "$DOCKER_CACHE_IMAGE" --env ''SECRET_KEY_BASE=dummy-value'' '
|
|
180
174
|
rules:
|
|
181
|
-
-
|
|
182
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
183
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
175
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
184
176
|
needs: []
|
|
185
177
|
retry: *a1
|
|
186
178
|
interruptible: true
|
|
@@ -196,9 +188,7 @@ app ๐งช test:
|
|
|
196
188
|
paths:
|
|
197
189
|
- __sbom.json
|
|
198
190
|
rules:
|
|
199
|
-
-
|
|
200
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
201
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
191
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
202
192
|
needs: []
|
|
203
193
|
retry: *a1
|
|
204
194
|
interruptible: true
|
|
@@ -345,10 +335,8 @@ app ๐งช test:
|
|
|
345
335
|
reports:
|
|
346
336
|
dotenv: gitlab_environment.env
|
|
347
337
|
rules:
|
|
348
|
-
- when: never
|
|
349
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
350
338
|
- when: on_success
|
|
351
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
339
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
352
340
|
needs:
|
|
353
341
|
- job: app ๐ฎ lint
|
|
354
342
|
artifacts: false
|
|
@@ -411,10 +399,8 @@ app ๐งช test:
|
|
|
411
399
|
rules:
|
|
412
400
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
413
401
|
when: on_success
|
|
414
|
-
- when: never
|
|
415
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
416
402
|
- when: manual
|
|
417
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
403
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
418
404
|
needs: []
|
|
419
405
|
retry: *a1
|
|
420
406
|
interruptible: true
|
|
@@ -463,10 +449,8 @@ app ๐งช test:
|
|
|
463
449
|
name: dev/app
|
|
464
450
|
action: access
|
|
465
451
|
rules:
|
|
466
|
-
- when: never
|
|
467
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
468
452
|
- when: manual
|
|
469
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
453
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
470
454
|
needs: []
|
|
471
455
|
retry: *a1
|
|
472
456
|
interruptible: true
|
|
@@ -89,9 +89,7 @@ app1 ๐ก audit:
|
|
|
89
89
|
- cd app1
|
|
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 @@ app1 ๐ฎ lint:
|
|
|
135
133
|
paths:
|
|
136
134
|
- app1/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 @@ app1 ๐งช test:
|
|
|
176
172
|
paths:
|
|
177
173
|
- app1/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
|
|
@@ -269,9 +263,7 @@ app1 ๐งช test:
|
|
|
269
263
|
when: always
|
|
270
264
|
reports: {}
|
|
271
265
|
rules:
|
|
272
|
-
-
|
|
273
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
274
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
266
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
275
267
|
needs: []
|
|
276
268
|
retry: *a1
|
|
277
269
|
interruptible: true
|
|
@@ -328,9 +320,7 @@ app1 ๐งช test:
|
|
|
328
320
|
paths:
|
|
329
321
|
- app1/.yarn
|
|
330
322
|
rules:
|
|
331
|
-
-
|
|
332
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
333
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
323
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
334
324
|
needs:
|
|
335
325
|
- 'app1 ๐จ app | dev '
|
|
336
326
|
retry: *a1
|
|
@@ -347,9 +337,7 @@ app1 ๐งช test:
|
|
|
347
337
|
paths:
|
|
348
338
|
- __sbom.json
|
|
349
339
|
rules:
|
|
350
|
-
-
|
|
351
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
352
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
340
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
353
341
|
needs: []
|
|
354
342
|
retry: *a1
|
|
355
343
|
interruptible: true
|
|
@@ -458,10 +446,8 @@ app1 ๐งช 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: app1 ๐ฎ lint
|
|
467
453
|
artifacts: false
|
|
@@ -504,10 +490,8 @@ app1 ๐งช test:
|
|
|
504
490
|
rules:
|
|
505
491
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
506
492
|
when: on_success
|
|
507
|
-
- when: never
|
|
508
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
509
493
|
- when: manual
|
|
510
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
494
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
511
495
|
needs: []
|
|
512
496
|
retry: *a1
|
|
513
497
|
interruptible: true
|
|
@@ -1475,9 +1459,7 @@ app2 ๐ก audit:
|
|
|
1475
1459
|
- cd app2
|
|
1476
1460
|
- yarn npm audit --environment production
|
|
1477
1461
|
rules:
|
|
1478
|
-
-
|
|
1479
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1480
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1462
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1481
1463
|
- if: $CI_MERGE_REQUEST_ID
|
|
1482
1464
|
needs: []
|
|
1483
1465
|
retry: *a1
|
|
@@ -1517,9 +1499,7 @@ app2 ๐ฎ lint:
|
|
|
1517
1499
|
paths:
|
|
1518
1500
|
- app2/node_modules
|
|
1519
1501
|
rules:
|
|
1520
|
-
-
|
|
1521
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1522
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1502
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1523
1503
|
- if: $CI_MERGE_REQUEST_ID
|
|
1524
1504
|
needs: []
|
|
1525
1505
|
retry: *a1
|
|
@@ -1558,9 +1538,7 @@ app2 ๐งช test:
|
|
|
1558
1538
|
paths:
|
|
1559
1539
|
- app2/node_modules
|
|
1560
1540
|
rules:
|
|
1561
|
-
-
|
|
1562
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1563
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1541
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1564
1542
|
- if: $CI_MERGE_REQUEST_ID
|
|
1565
1543
|
needs: []
|
|
1566
1544
|
retry: *a1
|
|
@@ -1655,9 +1633,7 @@ app2 ๐งช test:
|
|
|
1655
1633
|
when: always
|
|
1656
1634
|
reports: {}
|
|
1657
1635
|
rules:
|
|
1658
|
-
-
|
|
1659
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1660
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1636
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1661
1637
|
needs: []
|
|
1662
1638
|
retry: *a1
|
|
1663
1639
|
interruptible: true
|
|
@@ -1714,9 +1690,7 @@ app2 ๐งช test:
|
|
|
1714
1690
|
paths:
|
|
1715
1691
|
- app2/.yarn
|
|
1716
1692
|
rules:
|
|
1717
|
-
-
|
|
1718
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1719
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1693
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1720
1694
|
needs:
|
|
1721
1695
|
- 'app2 ๐จ app | dev '
|
|
1722
1696
|
retry: *a1
|
|
@@ -1733,9 +1707,7 @@ app2 ๐งช test:
|
|
|
1733
1707
|
paths:
|
|
1734
1708
|
- __sbom.json
|
|
1735
1709
|
rules:
|
|
1736
|
-
-
|
|
1737
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1738
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1710
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1739
1711
|
needs: []
|
|
1740
1712
|
retry: *a1
|
|
1741
1713
|
interruptible: true
|
|
@@ -1850,10 +1822,8 @@ app2 ๐งช test:
|
|
|
1850
1822
|
reports:
|
|
1851
1823
|
dotenv: gitlab_environment.env
|
|
1852
1824
|
rules:
|
|
1853
|
-
- when: never
|
|
1854
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1855
1825
|
- when: on_success
|
|
1856
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1826
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1857
1827
|
needs:
|
|
1858
1828
|
- job: app2 ๐ฎ lint
|
|
1859
1829
|
artifacts: false
|
|
@@ -1896,10 +1866,8 @@ app2 ๐งช test:
|
|
|
1896
1866
|
rules:
|
|
1897
1867
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
1898
1868
|
when: on_success
|
|
1899
|
-
- when: never
|
|
1900
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1901
1869
|
- when: manual
|
|
1902
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1870
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1903
1871
|
needs: []
|
|
1904
1872
|
retry: *a1
|
|
1905
1873
|
interruptible: true
|
|
@@ -2897,9 +2865,7 @@ app3 ๐ก audit:
|
|
|
2897
2865
|
- cd kube
|
|
2898
2866
|
- yarn npm audit --environment production
|
|
2899
2867
|
rules:
|
|
2900
|
-
-
|
|
2901
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
2902
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
2868
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
2903
2869
|
- if: $CI_MERGE_REQUEST_ID
|
|
2904
2870
|
needs: []
|
|
2905
2871
|
retry: *a1
|
|
@@ -2939,9 +2905,7 @@ app3 ๐ฎ lint:
|
|
|
2939
2905
|
paths:
|
|
2940
2906
|
- kube/node_modules
|
|
2941
2907
|
rules:
|
|
2942
|
-
-
|
|
2943
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
2944
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
2908
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
2945
2909
|
- if: $CI_MERGE_REQUEST_ID
|
|
2946
2910
|
needs: []
|
|
2947
2911
|
retry: *a1
|
|
@@ -2980,9 +2944,7 @@ app3 ๐งช test:
|
|
|
2980
2944
|
paths:
|
|
2981
2945
|
- kube/node_modules
|
|
2982
2946
|
rules:
|
|
2983
|
-
-
|
|
2984
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
2985
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
2947
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
2986
2948
|
- if: $CI_MERGE_REQUEST_ID
|
|
2987
2949
|
needs: []
|
|
2988
2950
|
retry: *a1
|
|
@@ -3071,9 +3033,7 @@ app3 ๐งช test:
|
|
|
3071
3033
|
when: always
|
|
3072
3034
|
reports: {}
|
|
3073
3035
|
rules:
|
|
3074
|
-
-
|
|
3075
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
3076
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
3036
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
3077
3037
|
needs: []
|
|
3078
3038
|
retry: *a1
|
|
3079
3039
|
interruptible: true
|
|
@@ -3130,9 +3090,7 @@ app3 ๐งช test:
|
|
|
3130
3090
|
paths:
|
|
3131
3091
|
- kube/.yarn
|
|
3132
3092
|
rules:
|
|
3133
|
-
-
|
|
3134
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
3135
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
3093
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
3136
3094
|
needs:
|
|
3137
3095
|
- 'app3 ๐จ app | dev '
|
|
3138
3096
|
retry: *a1
|
|
@@ -3149,9 +3107,7 @@ app3 ๐งช test:
|
|
|
3149
3107
|
paths:
|
|
3150
3108
|
- __sbom.json
|
|
3151
3109
|
rules:
|
|
3152
|
-
-
|
|
3153
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
3154
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
3110
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
3155
3111
|
needs: []
|
|
3156
3112
|
retry: *a1
|
|
3157
3113
|
interruptible: true
|
|
@@ -3278,10 +3234,8 @@ app3 ๐งช test:
|
|
|
3278
3234
|
reports:
|
|
3279
3235
|
dotenv: gitlab_environment.env
|
|
3280
3236
|
rules:
|
|
3281
|
-
- when: never
|
|
3282
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
3283
3237
|
- when: on_success
|
|
3284
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
3238
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
3285
3239
|
needs:
|
|
3286
3240
|
- job: app3 ๐ฎ lint
|
|
3287
3241
|
artifacts: false
|
|
@@ -3347,10 +3301,8 @@ app3 ๐งช test:
|
|
|
3347
3301
|
rules:
|
|
3348
3302
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
3349
3303
|
when: on_success
|
|
3350
|
-
- when: never
|
|
3351
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
3352
3304
|
- when: manual
|
|
3353
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
3305
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
3354
3306
|
needs: []
|
|
3355
3307
|
retry: *a1
|
|
3356
3308
|
interruptible: true
|
|
@@ -3400,10 +3352,8 @@ app3 ๐งช test:
|
|
|
3400
3352
|
name: dev/app3
|
|
3401
3353
|
action: access
|
|
3402
3354
|
rules:
|
|
3403
|
-
- when: never
|
|
3404
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
3405
3355
|
- when: manual
|
|
3406
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
3356
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
3407
3357
|
needs: []
|
|
3408
3358
|
retry: *a1
|
|
3409
3359
|
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
|
|
@@ -251,9 +245,7 @@ api ๐งช 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
|
|
@@ -269,9 +261,7 @@ api ๐งช test:
|
|
|
269
261
|
paths:
|
|
270
262
|
- __sbom.json
|
|
271
263
|
rules:
|
|
272
|
-
-
|
|
273
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
274
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
264
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
275
265
|
needs: []
|
|
276
266
|
retry: *a1
|
|
277
267
|
interruptible: true
|
|
@@ -309,10 +299,8 @@ api ๐งช test:
|
|
|
309
299
|
reports:
|
|
310
300
|
dotenv: gitlab_environment.env
|
|
311
301
|
rules:
|
|
312
|
-
- when: never
|
|
313
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
314
302
|
- when: on_success
|
|
315
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
303
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
316
304
|
needs:
|
|
317
305
|
- job: api ๐ฎ lint
|
|
318
306
|
artifacts: false
|
|
@@ -743,9 +731,7 @@ www ๐ก audit:
|
|
|
743
731
|
- cd www
|
|
744
732
|
- yarn npm audit --environment production
|
|
745
733
|
rules:
|
|
746
|
-
-
|
|
747
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
748
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
734
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
749
735
|
- if: $CI_MERGE_REQUEST_ID
|
|
750
736
|
needs: []
|
|
751
737
|
retry: *a1
|
|
@@ -785,9 +771,7 @@ www ๐ฎ lint:
|
|
|
785
771
|
paths:
|
|
786
772
|
- www/node_modules
|
|
787
773
|
rules:
|
|
788
|
-
-
|
|
789
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
790
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
774
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
791
775
|
- if: $CI_MERGE_REQUEST_ID
|
|
792
776
|
needs: []
|
|
793
777
|
retry: *a1
|
|
@@ -826,9 +810,7 @@ www ๐งช test:
|
|
|
826
810
|
paths:
|
|
827
811
|
- www/node_modules
|
|
828
812
|
rules:
|
|
829
|
-
-
|
|
830
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
831
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
813
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
832
814
|
- if: $CI_MERGE_REQUEST_ID
|
|
833
815
|
needs: []
|
|
834
816
|
retry: *a1
|
|
@@ -901,9 +883,7 @@ www ๐งช test:
|
|
|
901
883
|
when: always
|
|
902
884
|
reports: {}
|
|
903
885
|
rules:
|
|
904
|
-
-
|
|
905
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
906
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
886
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
907
887
|
needs: []
|
|
908
888
|
retry: *a1
|
|
909
889
|
interruptible: true
|
|
@@ -919,9 +899,7 @@ www ๐งช test:
|
|
|
919
899
|
paths:
|
|
920
900
|
- __sbom.json
|
|
921
901
|
rules:
|
|
922
|
-
-
|
|
923
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
924
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
902
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
925
903
|
needs: []
|
|
926
904
|
retry: *a1
|
|
927
905
|
interruptible: true
|
|
@@ -959,10 +937,8 @@ www ๐งช test:
|
|
|
959
937
|
reports:
|
|
960
938
|
dotenv: gitlab_environment.env
|
|
961
939
|
rules:
|
|
962
|
-
- when: never
|
|
963
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
964
940
|
- when: on_success
|
|
965
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
941
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
966
942
|
needs:
|
|
967
943
|
- job: 'api ๐ Deploy | dev '
|
|
968
944
|
artifacts: false
|
|
@@ -89,9 +89,7 @@ before_script:
|
|
|
89
89
|
- cd .
|
|
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 @@ before_script:
|
|
|
135
133
|
paths:
|
|
136
134
|
- 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 @@ before_script:
|
|
|
176
172
|
paths:
|
|
177
173
|
- 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
|
|
@@ -269,9 +263,7 @@ before_script:
|
|
|
269
263
|
when: always
|
|
270
264
|
reports: {}
|
|
271
265
|
rules:
|
|
272
|
-
-
|
|
273
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
274
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
266
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
275
267
|
needs: []
|
|
276
268
|
retry: *a1
|
|
277
269
|
interruptible: true
|
|
@@ -598,9 +590,7 @@ before_script:
|
|
|
598
590
|
paths:
|
|
599
591
|
- api/.yarn
|
|
600
592
|
rules:
|
|
601
|
-
-
|
|
602
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
603
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
593
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
604
594
|
needs:
|
|
605
595
|
- job: '๐ธ myWorkspace ๐จ app | dev '
|
|
606
596
|
artifacts: true
|
|
@@ -618,9 +608,7 @@ before_script:
|
|
|
618
608
|
paths:
|
|
619
609
|
- __sbom.json
|
|
620
610
|
rules:
|
|
621
|
-
-
|
|
622
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
623
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
611
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
624
612
|
needs: []
|
|
625
613
|
retry: *a1
|
|
626
614
|
interruptible: true
|
|
@@ -714,10 +702,8 @@ before_script:
|
|
|
714
702
|
reports:
|
|
715
703
|
dotenv: gitlab_environment.env
|
|
716
704
|
rules:
|
|
717
|
-
- when: never
|
|
718
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
719
705
|
- when: on_success
|
|
720
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
706
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
721
707
|
needs:
|
|
722
708
|
- job: ๐ธ myWorkspace ๐ฎ lint
|
|
723
709
|
artifacts: false
|
|
@@ -758,10 +744,8 @@ before_script:
|
|
|
758
744
|
rules:
|
|
759
745
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
760
746
|
when: on_success
|
|
761
|
-
- when: never
|
|
762
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
763
747
|
- when: manual
|
|
764
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
748
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
765
749
|
needs: []
|
|
766
750
|
retry: *a1
|
|
767
751
|
interruptible: true
|
|
@@ -1450,9 +1434,7 @@ before_script:
|
|
|
1450
1434
|
paths:
|
|
1451
1435
|
- www/.yarn
|
|
1452
1436
|
rules:
|
|
1453
|
-
-
|
|
1454
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1455
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1437
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1456
1438
|
needs:
|
|
1457
1439
|
- job: '๐ธ myWorkspace ๐จ app | dev '
|
|
1458
1440
|
artifacts: true
|
|
@@ -1470,9 +1452,7 @@ before_script:
|
|
|
1470
1452
|
paths:
|
|
1471
1453
|
- __sbom.json
|
|
1472
1454
|
rules:
|
|
1473
|
-
-
|
|
1474
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1475
|
-
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1455
|
+
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1476
1456
|
needs: []
|
|
1477
1457
|
retry: *a1
|
|
1478
1458
|
interruptible: true
|
|
@@ -1569,10 +1549,8 @@ before_script:
|
|
|
1569
1549
|
reports:
|
|
1570
1550
|
dotenv: gitlab_environment.env
|
|
1571
1551
|
rules:
|
|
1572
|
-
- when: never
|
|
1573
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1574
1552
|
- when: on_success
|
|
1575
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1553
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1576
1554
|
needs:
|
|
1577
1555
|
- job: ๐ธ myWorkspace ๐ฎ lint
|
|
1578
1556
|
artifacts: false
|
|
@@ -1613,10 +1591,8 @@ before_script:
|
|
|
1613
1591
|
rules:
|
|
1614
1592
|
- if: $CI_COMMIT_BRANCH =~ /^[0-9]+\\.([0-9]+|x)\\.x$/
|
|
1615
1593
|
when: on_success
|
|
1616
|
-
- when: never
|
|
1617
|
-
if: $CI_COMMIT_MESSAGE =~ /^chore\\(release\\).*/
|
|
1618
1594
|
- when: manual
|
|
1619
|
-
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
1595
|
+
if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_COMMIT_MESSAGE !~ /^chore\\(release\\).*/
|
|
1620
1596
|
needs: []
|
|
1621
1597
|
retry: *a1
|
|
1622
1598
|
interruptible: true
|