2 Commits

Author SHA1 Message Date
Sagent 02b829c6b1 chore: remove redundant configs now handled globally 2026-06-09 13:40:53 +00:00
Sagent c027ac395d chore: add renovate.json with gitlabci + Jenkins regex managers 2026-06-09 12:54:54 +00:00
+17
View File
@@ -0,0 +1,17 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
{
"customType": "regex",
"description": "Detect Docker images in Jenkins pipeline files",
"fileMatch": [
"Jenkinsfile$",
"Jenkinsfile-pod-template\\.yml$"
],
"matchStrings": [
"image:\\s*['\"]?(?<depName>[^'\"\\s]+):(?<currentValue>[^'\"\\s]+)['\"]?"
],
"datasourceTemplate": "docker"
}
]
}