From c027ac395df514a46ec88a10fcfc50990d5b3acd Mon Sep 17 00:00:00 2001 From: Sagent Date: Tue, 9 Jun 2026 12:54:54 +0000 Subject: [PATCH] chore: add renovate.json with gitlabci + Jenkins regex managers --- renovate.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..1bcc79c --- /dev/null +++ b/renovate.json @@ -0,0 +1,18 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "gitlabci": { + "enabled": true, + "fileMatch": ["^\\.gitlab-ci\\.yml$"] + }, + "customManagers": [ + { + "customType": "regex", + "description": "Detect Docker images in Jenkins pipeline files", + "fileMatch": ["Jenkinsfile$", "Jenkinsfile-pod-template\\.yml$"], + "matchStrings": [ + "image:\\s*['\"]?(?[^'\"\\s]+):(?[^'\"\\s]+)['\"]?" + ], + "datasourceTemplate": "docker" + } + ] +}