This commit is contained in:
Kjeld Schouten
2024-10-13 12:02:44 +02:00
parent 7084c8daaf
commit 366313b651
3 changed files with 13 additions and 3 deletions
+2 -1
View File
@@ -9,7 +9,8 @@
"\\.github/workflows/.*\\.ya?ml$", // Matches all workflow YAML files
"\\.github/workflows/.*\\.ya?ml\\.j2$", // Matches Jinja2 templated workflow files
"(^|/)clusters/.+\\.ya?ml(?:\\.j2)?$",
"(^|/)repositories/.+\\.ya?ml(?:\\.j2)?$"
"(^|/)repositories/.+\\.ya?ml(?:\\.j2)?$",
"(^|/)clustertool/embeded/.+\\.ya?ml(?:\\.j2)?$"
],
"enabled": true, // Enable Docker image updates
"commitMessageSuffix": "fix: update Docker image", // Customize commit message suffix
+2 -1
View File
@@ -4,7 +4,8 @@
"flux": {
"fileMatch": [
"(^|/)clusters/.+\\.ya?ml(?:\\.j2)?$",
"(^|/)repositories/.+\\.ya?ml(?:\\.j2)?$"
"(^|/)repositories/.+\\.ya?ml(?:\\.j2)?$",
"(^|/)clustertool/embeded/.+\\.ya?ml(?:\\.j2)?$"
],
"enabled": true, // Enable Flux updates
"updateTypes": ["major", "minor", "patch"], // Allow updates for all version types
+9 -1
View File
@@ -40,5 +40,13 @@
],
"ignoreDeps": [
// List any dependencies to ignore globally if needed
]
],
"ignorePaths": [
"**/*.sops.*",
"**/.archive/**",
"**/archive/**",
"**/misc/**",
"**/archive/**",
"**/resources/**"
],
}