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

add preset for ansible repos

This commit is contained in:
Robert Kaussow 2021-01-02 22:15:02 +01:00
parent 755df25e21
commit 248e6c809a
No known key found for this signature in database
GPG Key ID: 65362AE74AF98B61

13
ansible.json Normal file
View File

@ -0,0 +1,13 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": ["Preset for use with ansible repositories"],
"extends": ["github>thegeeklab/renovate-presets:base"],
"regexManagers": [
{
"fileMatch": ["^(group_vars|services)/.*?$"],
"matchStrings": [
"# renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)( versioning=(?<versioning>.*?))?\\n(?<roleName>\\S+?)_version: \"?(?<currentValue>.*?)\"?\\s"
]
}
]
}