From a30e60b557aa2316c32b76263ec4b564cfe2346f Mon Sep 17 00:00:00 2001 From: Adrian Cowan Date: Sat, 18 Apr 2026 16:15:18 +1000 Subject: [PATCH] Add custom managers to renovate.json for Docker image updates --- renovate.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 7190a60..9798d5e 100644 --- a/renovate.json +++ b/renovate.json @@ -1,3 +1,15 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json" + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "customManagers": [ + { + "description": "Update Docker image tags in Nomad job files", + "customType": "regex", + "fileMatch": ["\\.nomad\\.hcl$"], + "matchStrings": [ + "image\\s*=\\s*\"(?[^:\"]+):(?[^\"]+)\"" + ], + "datasourceTemplate": "docker" + } + ] }