From 2371aeb6128955f7f58b5511ee379f9a00acdb6f Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Fri, 6 Jun 2025 17:47:53 -0500 Subject: [PATCH] add bumpversion --- renovate.json | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/renovate.json b/renovate.json index 9bc9e72..95aaa75 100644 --- a/renovate.json +++ b/renovate.json @@ -19,7 +19,14 @@ "addLabels": [ "chart" ], - "automerge": false + "automerge": false, + "bumpVersions": [ + { + "filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"], + "matchStrings": ["version:\\s(?[^\\s]+)"], + "bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}" + } + ] }, { "description": "Label images", @@ -29,7 +36,14 @@ "addLabels": [ "image" ], - "automerge": false + "automerge": false, + "bumpVersions": [ + { + "filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"], + "matchStrings": ["version:\\s(?[^\\s]+)"], + "bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}" + } + ] }, { "description": "CNPG image", @@ -43,7 +57,14 @@ "image" ], "automerge": false, - "versioning": "deb" + "versioning": "deb", + "bumpVersions": [ + { + "filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"], + "matchStrings": ["version:\\s(?[^\\s]+)"], + "bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}" + } + ] } ] }