From 5cf8744e6cbcff0a2019120cfd024241412dcede Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Thu, 17 Oct 2024 12:30:51 +0200 Subject: [PATCH] some more renovate work --- .github/renovate/basics/commitMessage.json5 | 4 ---- .github/renovate/kinds/helm-values.json5 | 3 ++- .github/renovate/kinds/helm.json5 | 10 +++++++--- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/renovate/basics/commitMessage.json5 b/.github/renovate/basics/commitMessage.json5 index 3e4f0ed39f6..9fe59672655 100644 --- a/.github/renovate/basics/commitMessage.json5 +++ b/.github/renovate/basics/commitMessage.json5 @@ -5,10 +5,6 @@ "commitMessageSuffix": "By Renovate", "prefix": "chore(deps)", "packageRules": [ - { - "matchDatasources": ["helm"], - "commitMessageTopic": "chart {{depName}}" - }, { "matchDatasources": ["docker", "helm-values"], "commitMessageTopic": "OCI-image {{depName}}" diff --git a/.github/renovate/kinds/helm-values.json5 b/.github/renovate/kinds/helm-values.json5 index d73a4ce8075..7d0dcef0392 100644 --- a/.github/renovate/kinds/helm-values.json5 +++ b/.github/renovate/kinds/helm-values.json5 @@ -10,7 +10,8 @@ ], "enabled": true, // Enable image reference updates in values.yaml "updateTypes": ["major", "minor", "patch", "digest", "pin"], // Allow updates for all version types - "semanticCommitScope": "container" + "semanticCommitScope": "container", + "bumpVersion": true }, "branchPrefix": "helm-values-", "ignore": [ diff --git a/.github/renovate/kinds/helm.json5 b/.github/renovate/kinds/helm.json5 index ec65e74dfa4..a3fd0ab5771 100644 --- a/.github/renovate/kinds/helm.json5 +++ b/.github/renovate/kinds/helm.json5 @@ -7,12 +7,16 @@ ], "enabled": true, // Enable Helm chart updates "semanticCommitScope": "helm", + "versioning": "semver", + "bumpVersion": true, + "commitMessageTopic": "chart {{depName}}", "updateTypes": ["major", "minor", "patch"], // Allow updates for all version types - "pinDigests": false // Set to false to not pin digest references + "pinDigests": false, // Set to false to not pin digest references + "branchPrefix": "helm-", + "requiredStatusChecks": null }, "ignore": [ // Add any global ignores here if needed ], - "branchPrefix": "helm-", - "requiredStatusChecks": null + }