You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.8 KiB
56 lines
1.8 KiB
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:base"
|
|
],
|
|
"enabledManagers": ["ansible", "ansible-galaxy", "dockerfile", "git-submodules", "helmv3", "kustomize", "regex"],
|
|
"dockerfile": {
|
|
"fileMatch": ["Containerfile"]
|
|
},
|
|
"git-submodules": {
|
|
"enabled": true
|
|
},
|
|
"registryAliases": {
|
|
"nextcloud": "https://nextcloud.github.io/helm/"
|
|
},
|
|
"regexManagers": [
|
|
{
|
|
"fileMatch": [
|
|
"^ansible/group_vars/all/versions.yaml$",
|
|
"^ansible/roles/.*/defaults/main.yaml$"
|
|
],
|
|
"matchStrings": [
|
|
"renovate:\\s+datasource=(?<datasource>.*?) depName=(?<depName>.*?)( registryUrl=(?<registryUrl>.+?))?( versioning=(?<versioning>.*?))?\\s.*?_version:\\s+[\"']?(?<currentValue>[^'\"]*)[\"']?\\s"
|
|
],
|
|
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
|
|
},
|
|
{
|
|
"fileMatch": [
|
|
"^rpms/SPECS/.*.spec$"
|
|
],
|
|
"matchStrings": [
|
|
"renovate:\\s+datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\sVersion:\\s+(?<currentValue>.*)\\s"
|
|
],
|
|
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
|
|
},
|
|
{
|
|
"fileMatch": [
|
|
"^docker/.*/Containerfile$"
|
|
],
|
|
"matchStrings": [
|
|
"renovate:\\s+datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\s+ARG\\s+.*_VERSION=(?<currentValue>.*)\\s"
|
|
],
|
|
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
|
|
},
|
|
{
|
|
"fileMatch": [
|
|
"^tekton/kustomization.yaml$"
|
|
],
|
|
"matchStrings": [
|
|
"https:\\/\\/github.com\\/(?<depName>[^/]+\\/[^/]+?)\\/releases\\/download\\/(?<currentValue>[^/]+)\\/.*"
|
|
],
|
|
"datasourceTemplate": "github-releases"
|
|
}
|
|
|
|
]
|
|
}
|
|
|