0
0
mirror of https://github.com/thegeeklab/renovate-presets.git synced 2024-06-02 18:19:40 +02:00

fix: detect group_vars in inventory directory

This commit is contained in:
Robert Kaussow 2022-07-24 21:51:37 +02:00
parent 32e55fed06
commit a26aaada30
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0

View File

@ -4,7 +4,10 @@
"extends": ["github>thegeeklab/renovate-presets:base"],
"regexManagers": [
{
"fileMatch": ["^(group_vars|services)/.*?$"],
"fileMatch": [
"^(group_vars|services)/.*?$",
"^inventory/group_vars/.*?$"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)( versioning=(?<versioning>.*?))?\\n(?<roleName>\\S+?)_version: \"?(?<currentValue>.*?)\"?\\s"
]