more renovate polish

This commit is contained in:
Kjeld Schouten
2024-10-17 12:39:28 +02:00
parent 5cf8744e6c
commit b3992dc9c0
7 changed files with 28 additions and 24 deletions
+3 -2
View File
@@ -11,10 +11,11 @@
"ignore": [ "ignore": [
// Specify any dependencies or versions to ignore // Specify any dependencies or versions to ignore
], ],
"semanticCommitScope": "website" "semanticCommitScope": "website",
},
"ignoreDeps": [ "ignoreDeps": [
// List any dependencies to ignore globally if needed // List any dependencies to ignore globally if needed
], ],
"requiredStatusChecks": null "requiredStatusChecks": null
},
} }
+3 -3
View File
@@ -8,9 +8,9 @@
"docker-compose\\.ya?ml\\.j2$", // Matches Jinja2 templated docker-compose files "docker-compose\\.ya?ml\\.j2$", // Matches Jinja2 templated docker-compose files
"\\.github/workflows/.*\\.ya?ml$", // Matches all workflow YAML files "\\.github/workflows/.*\\.ya?ml$", // Matches all workflow YAML files
"\\.github/workflows/.*\\.ya?ml\\.j2$", // Matches Jinja2 templated workflow files "\\.github/workflows/.*\\.ya?ml\\.j2$", // Matches Jinja2 templated workflow files
"(^|/)clusters/.+\\.ya?ml(?:\\.j2)?$", // "(^|/)clusters/.+\\.ya?ml(?:\\.j2)?$",
"(^|/)repositories/.+\\.ya?ml(?:\\.j2)?$", // "(^|/)repositories/.+\\.ya?ml(?:\\.j2)?$",
"(^|/)clustertool/embeded/.+\\.ya?ml(?:\\.j2)?$" // "(^|/)clustertool/embeded/.+\\.ya?ml(?:\\.j2)?$"
], ],
"branchPrefix": "docker-", "branchPrefix": "docker-",
"enabled": true, // Enable Docker image updates "enabled": true, // Enable Docker image updates
+3 -2
View File
@@ -10,11 +10,12 @@
"enabled": true, // Enable Flux updates "enabled": true, // Enable Flux updates
"updateTypes": ["major", "minor", "patch"], // Allow updates for all version types "updateTypes": ["major", "minor", "patch"], // Allow updates for all version types
"semanticCommitScope": "Flux Objects", "semanticCommitScope": "Flux Objects",
"pinDigests": false // Set to false to not pin digest references "pinDigests": false, // Set to false to not pin digest references
},
"branchPrefix": "flux-", "branchPrefix": "flux-",
"ignore": [ "ignore": [
// Add any global ignores here // Add any global ignores here
], ],
"requiredStatusChecks": null, "requiredStatusChecks": null,
},
} }
+3 -2
View File
@@ -11,11 +11,12 @@
"semanticCommitScope": "github-action", "semanticCommitScope": "github-action",
"ignore": [ "ignore": [
// Specify any actions or workflows to ignore // Specify any actions or workflows to ignore
] ],
},
"branchPrefix": "githubactions-", "branchPrefix": "githubactions-",
"ignoreDeps": [ "ignoreDeps": [
// List any dependencies to ignore globally if needed // List any dependencies to ignore globally if needed
], ],
"requiredStatusChecks": null, "requiredStatusChecks": null,
},
} }
+3 -2
View File
@@ -11,8 +11,7 @@
"ignore": [ "ignore": [
// Specify any modules or versions to ignore // Specify any modules or versions to ignore
], ],
"semanticCommitScope": "go" "semanticCommitScope": "go",
},
"branchPrefix": "go-", "branchPrefix": "go-",
"ignoreDeps": [ "ignoreDeps": [
// List any dependencies to ignore globally if needed // List any dependencies to ignore globally if needed
@@ -25,4 +24,6 @@
} }
], ],
"requiredStatusChecks": null, "requiredStatusChecks": null,
},
} }
+11 -12
View File
@@ -1,21 +1,20 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"helm-values": { "helm-values": {
"fileMatch": [ "fileMatch": [
"(^|/)clusters/.+\\.ya?ml(?:\\.j2)?$", "(^|/)clusters/.+\\-values\\.ya?ml(?:\\.j2)?$", // Match *-values.yaml, *-values.yml, or *-values.yaml.j2 in clusters
"(^|/)kubernetes/.+\\.ya?ml(?:\\.j2)?$", "(^|/)kubernetes/.+\\-values\\.ya?ml(?:\\.j2)?$", // Match *-values.yaml, *-values.yml, or *-values.yaml.j2 in kubernetes
"(^|/)repositories/.+\\.ya?ml(?:\\.j2)?$", "(^|/)repositories/.+\\-values\\.ya?ml(?:\\.j2)?$", // Match *-values.yaml, *-values.yml, or *-values.yaml.j2 in repositories
"(^|/)charts/.+\\.ya?ml(?:\\.j2)?$", "(^|/)charts/.+\\-values\\.ya?ml(?:\\.j2)?$" // Match *-values.yaml, *-values.yml, or *-values.yaml.j2 in charts
], ],
"enabled": true, // Enable image reference updates in values.yaml "enabled": true, // Enable image reference updates in values.yaml
"updateTypes": ["major", "minor", "patch", "digest", "pin"], // Allow updates for all version types "updateTypes": ["major", "minor", "patch", "digest", "pin"], // Allow updates for all version types
"semanticCommitScope": "container", "semanticCommitScope": "container",
"bumpVersion": true "bumpVersion": true,
}, "branchPrefix": "helm-values-", // Moved to helm-values scope
"branchPrefix": "helm-values-", "ignore": [
"ignore": [ ],
// Add any global ignores here if needed "requiredStatusChecks": null // Moved to helm-values scope
], }
"requiredStatusChecks": null,
} }
+2 -1
View File
@@ -50,6 +50,7 @@
"**/misc/**", "**/misc/**",
"**/archive/**", "**/archive/**",
"**/resources/**", "**/resources/**",
"**common/test-chart/tests/**" "**common/test-chart/tests/**",
"charts/library/common/test-chart/tests/**"
], ],
} }