ci: separate renovate manager for toml

This commit is contained in:
Julian Tölle 2025-08-24 17:06:17 +02:00
parent 44b76e55f8
commit 544438e0d9
2 changed files with 11 additions and 3 deletions

View file

@ -64,12 +64,20 @@
customType: 'regex',
managerFilePatterns: [
'/.+\\.ya?ml$/',
'/.+\\.toml$/'
],
matchStrings: [
': (?<currentValue>.+) # renovate: datasource=(?<datasource>[a-z-]+) depName=(?<depName>[^\\s]+)(?: lookupName=(?<packageName>[^\\s]+))?(?: versioning=(?<versioning>[a-z-]+))?(?: extractVersion=(?<extractVersion>[^\\s]+))?',
],
},
{
customType: 'regex',
managerFilePatterns: [
'/.+\\.toml$/'
],
matchStrings: [
'= "(?<currentValue>.+)" # renovate: datasource=(?<datasource>[a-z-]+) depName=(?<depName>[^\\s]+)(?: lookupName=(?<packageName>[^\\s]+))?(?: versioning=(?<versioning>[a-z-]+))?(?: extractVersion=(?<extractVersion>[^\\s]+))?',
],
}
],
postUpdateOptions: [
'gomodUpdateImportPaths',