diff --git a/.github/renovate/basics/commitMessage.json5 b/.github/renovate/basics/commitMessage.json5 index ccbdb195e63..299c9379700 100644 --- a/.github/renovate/basics/commitMessage.json5 +++ b/.github/renovate/basics/commitMessage.json5 @@ -2,7 +2,7 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "commitMessageTopic": "{{depName}}", "commitMessageExtra": "{{currentVersion}} → {{newVersion}}", - "commitMessageSuffix": "", + "commitMessageSuffix": "By Renovate", "packageRules": [ { "matchDatasources": ["helm"], diff --git a/.github/renovate/kinds/astro.json5 b/.github/renovate/kinds/astro.json5 index e576c66acd9..caf29408ce1 100644 --- a/.github/renovate/kinds/astro.json5 +++ b/.github/renovate/kinds/astro.json5 @@ -6,7 +6,6 @@ "(^|/)website/.+/package\\.json$" // Matches package.json files in /website and any subdirectory ], "enabled": true, // Enable updates for website dependencies - "commitMessageSuffix": "fix: update website dependencies", // Customize commit message suffix "updateTypes": ["major", "minor", "patch"], // Allow updates for all version types "ignore": [ // Specify any dependencies or versions to ignore diff --git a/.github/renovate/kinds/docker.json5 b/.github/renovate/kinds/docker.json5 index 8a2308710f3..25f5ab7d7df 100644 --- a/.github/renovate/kinds/docker.json5 +++ b/.github/renovate/kinds/docker.json5 @@ -13,7 +13,6 @@ "(^|/)clustertool/embeded/.+\\.ya?ml(?:\\.j2)?$" ], "enabled": true, // Enable Docker image updates - "commitMessageSuffix": "fix: update Docker image", // Customize commit message suffix "updateTypes": ["major", "minor", "patch", "digest"], // Allow updates for all version types "semanticCommitScope": "container", "ignore": [ diff --git a/.github/renovate/kinds/flux.json5 b/.github/renovate/kinds/flux.json5 index 15e1963790f..8933966e695 100644 --- a/.github/renovate/kinds/flux.json5 +++ b/.github/renovate/kinds/flux.json5 @@ -9,8 +9,7 @@ ], "enabled": true, // Enable Flux updates "updateTypes": ["major", "minor", "patch"], // Allow updates for all version types - "commitMessageSuffix": "fix: update Flux helm-release", // Customize commit message suffix - "semanticCommitScope": "Flux Objects", + "semanticCommitScope": "Flux Objects" }, "ignore": [ diff --git a/.github/renovate/kinds/githubactions.json5 b/.github/renovate/kinds/githubactions.json5 index 6083a002c9f..9b50fff89f7 100644 --- a/.github/renovate/kinds/githubactions.json5 +++ b/.github/renovate/kinds/githubactions.json5 @@ -7,7 +7,6 @@ "\\.github/workflows/.*\\.ya?ml\\.j2$" // Matches Jinja2 templated workflow files ], "enabled": true, // Enable GitHub Actions updates - "commitMessageSuffix": "fix: update GitHub Actions", // Customize commit message suffix "updateTypes": ["major", "minor", "patch", "digest"], // Allow updates for all version types "semanticCommitScope": "github-action", "ignore": [ diff --git a/.github/renovate/kinds/go.json5 b/.github/renovate/kinds/go.json5 index bf6948e5910..8e4a9e373a7 100644 --- a/.github/renovate/kinds/go.json5 +++ b/.github/renovate/kinds/go.json5 @@ -7,12 +7,11 @@ "go\\.sum$" // Matches Go sum files ], "enabled": true, // Enable Go module updates - "commitMessageSuffix": "fix: update Go modules", // Customize commit message suffix "updateTypes": ["major", "minor", "patch", "digest"], // Allow updates for all version types "ignore": [ // Specify any modules or versions to ignore ], - "semanticCommitScope": "go", + "semanticCommitScope": "go" }, "ignoreDeps": [ // List any dependencies to ignore globally if needed diff --git a/.github/renovate/kinds/helm-values.json5 b/.github/renovate/kinds/helm-values.json5 index 4a2a7500eda..9cbae2c0f9c 100644 --- a/.github/renovate/kinds/helm-values.json5 +++ b/.github/renovate/kinds/helm-values.json5 @@ -9,8 +9,7 @@ ], "enabled": true, // Enable image reference updates in values.yaml "updateTypes": ["major", "minor", "patch", "digest"], // Allow updates for all version types - "commitMessageSuffix": "fix: update image references", // Customize commit message suffix - "semanticCommitScope": "container", + "semanticCommitScope": "container" }, "ignore": [ // Add any global ignores here if needed diff --git a/.github/renovate/kinds/helm.json5 b/.github/renovate/kinds/helm.json5 index bc7cda9dff2..e3c56249624 100644 --- a/.github/renovate/kinds/helm.json5 +++ b/.github/renovate/kinds/helm.json5 @@ -7,8 +7,7 @@ ], "enabled": true, // Enable Helm chart updates "semanticCommitScope": "helm", - "updateTypes": ["major", "minor", "patch"], // Allow updates for all version types - "commitMessageSuffix": "fix: update Helm chart" // Customize commit message suffix + "updateTypes": ["major", "minor", "patch"] // Allow updates for all version types }, "ignore": [ // Add any global ignores here if needed diff --git a/.github/renovate/main.json5 b/.github/renovate/main.json5 index 199dec1b5fd..8bf32cef492 100644 --- a/.github/renovate/main.json5 +++ b/.github/renovate/main.json5 @@ -2,7 +2,6 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "rebaseWhen": "conflicted", "prConcurrentLimit": 150, - commitMessageSuffix: "By Renovate", "pinDigests": true, "semanticCommits": "enabled", "extends": ["helpers:pinGitHubActionDigests"],