diff --git a/.github/renovate/basics/commitMessage.json5 b/.github/renovate/basics/commitMessage.json5 index 3747c8af5e1..8b3f46b64a0 100644 --- a/.github/renovate/basics/commitMessage.json5 +++ b/.github/renovate/basics/commitMessage.json5 @@ -15,7 +15,7 @@ "matchManagers": ["helm-values"], "updateTypes": ["digest", "pin"], "commitMessageTopic": "image {{depName}}", - "commitMessageExtra": "{{fromDigestShort}} → {{toDigestShort}}", + "commitMessageExtra": "digest to {{toDigestShort}}", "prefix": "chore(helm)" }, { @@ -29,7 +29,7 @@ "matchManagers": ["docker"], "updateTypes": ["digest", "pin"], "commitMessageTopic": "image {{depName}}", - "commitMessageExtra": "{{fromDigestShort}} → {{toDigestShort}}", + "commitMessageExtra": "digest to {{toDigestShort}}", "prefix": "chore(container)" }, { @@ -52,7 +52,7 @@ "updateTypes": ["digest", "pin"], "matchPackagePatterns": [".*/.*"], "commitMessageTopic": "image {{depName}}", - "commitMessageExtra": "{{fromDigestShort}} → {{toDigestShort}}", + "commitMessageExtra": "digest to {{toDigestShort}}", "prefix": "chore(flux)" }, { diff --git a/.github/renovate/basics/labels.json5 b/.github/renovate/basics/labels.json5 index 17cd3f44dff..90f418c0e06 100644 --- a/.github/renovate/basics/labels.json5 +++ b/.github/renovate/basics/labels.json5 @@ -29,6 +29,14 @@ "matchManager": ["docker", "helm-values"], "addLabels": ["renovate/container"] }, + { + "matchManager": ["npm"], + "addLabels": ["renovate/website"] + }, + { + "matchManager": ["flux"], + "addLabels": ["renovate/flux"] + }, { "matchDatasources": ["github-releases", "github-tags"], "addLabels": ["renovate/github-release"] diff --git a/.github/renovate/kinds/astro.json5 b/.github/renovate/kinds/astro.json5 index cd4d0fd79b8..7c0614c2a37 100644 --- a/.github/renovate/kinds/astro.json5 +++ b/.github/renovate/kinds/astro.json5 @@ -5,7 +5,7 @@ "(^|/)website/.+/astro\\.config\\.(mjs|js|ts)$", // Matches Astro config files in /website and any subdirectory "(^|/)website/.+/package\\.json$" // Matches package.json files in /website and any subdirectory ], - "branchPrefix": "astro-", + "branchPrefix": "renovate/astro-", "enabled": true, // Enable updates for website dependencies "updateTypes": ["major", "minor", "patch", "digest", "pin", "lockfile"], // Allow updates for all version types "semanticCommitScope": "website" diff --git a/.github/renovate/kinds/docker.json5 b/.github/renovate/kinds/docker.json5 index 954760460aa..cd9011ac555 100644 --- a/.github/renovate/kinds/docker.json5 +++ b/.github/renovate/kinds/docker.json5 @@ -12,7 +12,7 @@ // "(^|/)repositories/.+\\.ya?ml$", // "(^|/)clustertool/embeded/.+\\.ya?ml$" ], - "branchPrefix": "docker-", + "branchPrefix": "renovate/docker-", "enabled": true, // Enable Docker image updates "updateTypes": ["major", "minor", "patch", "digest", "pin"], // Allow updates for all version types "semanticCommitScope": "container", diff --git a/.github/renovate/kinds/flux.json5 b/.github/renovate/kinds/flux.json5 index 9de115ff081..9590540ddfc 100644 --- a/.github/renovate/kinds/flux.json5 +++ b/.github/renovate/kinds/flux.json5 @@ -11,6 +11,6 @@ "updateTypes": ["major", "minor", "patch"], // Allow updates for all version types "semanticCommitScope": "flux", "pinDigests": false, // Set to false to not pin digest references - "branchPrefix": "flux-", + "branchPrefix": "renovate/flux-", }, } diff --git a/.github/renovate/kinds/githubactions.json5 b/.github/renovate/kinds/githubactions.json5 index 49c9c0db7f0..e17b2842fd6 100644 --- a/.github/renovate/kinds/githubactions.json5 +++ b/.github/renovate/kinds/githubactions.json5 @@ -9,7 +9,7 @@ "enabled": true, // Enable GitHub Actions updates "updateTypes": ["major", "minor", "patch", "digest", "pin"], // Allow updates for all version types "semanticCommitScope": "github-action", - "branchPrefix": "githubactions-", + "branchPrefix": "renovate/githubactions-", }, } diff --git a/.github/renovate/kinds/go.json5 b/.github/renovate/kinds/go.json5 index 0913e258485..9ced5009060 100644 --- a/.github/renovate/kinds/go.json5 +++ b/.github/renovate/kinds/go.json5 @@ -9,7 +9,7 @@ "enabled": true, // Enable Go module updates "updateTypes": ["major", "minor", "patch", "digest", "pin", "lockfile"], // Allow updates for all version types "semanticCommitScope": "go", - "branchPrefix": "go-", + "branchPrefix": "renovate/go-", }, } diff --git a/.github/renovate/kinds/helm-values.json5 b/.github/renovate/kinds/helm-values.json5 index 0c0b4e0df82..72ea386902c 100644 --- a/.github/renovate/kinds/helm-values.json5 +++ b/.github/renovate/kinds/helm-values.json5 @@ -12,7 +12,7 @@ "updateTypes": ["major", "minor", "patch", "digest", "pin"], // Allow updates for all version types "semanticCommitScope": "helm", "bumpVersion": true, - "branchPrefix": "helm-values-", // Moved to helm-values scope + "branchPrefix": "renovate/helm-values-", // Moved to helm-values scope } } diff --git a/.github/renovate/kinds/helm.json5 b/.github/renovate/kinds/helm.json5 index 25a70d41277..3f82ed71152 100644 --- a/.github/renovate/kinds/helm.json5 +++ b/.github/renovate/kinds/helm.json5 @@ -11,7 +11,7 @@ "bumpVersion": true, "updateTypes": ["major", "minor", "patch"], // Allow updates for all version types "pinDigests": false, // Set to false to not pin digest references - "branchPrefix": "helm-", + "branchPrefix": "renovate/helm-", }, } diff --git a/.github/renovate/main.json5 b/.github/renovate/main.json5 index 61d7e2588d8..662bc343433 100644 --- a/.github/renovate/main.json5 +++ b/.github/renovate/main.json5 @@ -4,6 +4,7 @@ "prConcurrentLimit": 150, "automergeType": "pr", "pinDigests": true, + "branchPrefix": "renovate/", "semanticCommits": "enabled", "dependencyDashboard": true, "dependencyDashboardTitle": "Renovate Dashboard 🤖",