forked from coop-cloud/wordpress
- .drone.yml: pin gomplate to v5.0.0, remove redundant pip yamllint install - renovate.json: add github-releases regex manager for hairyhenderson/gomplate
38 lines
963 B
JSON
38 lines
963 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended"
|
|
],
|
|
"regexManagers": [
|
|
{
|
|
"fileMatch": ["(^|/)compose[^/]*\\.yml$"],
|
|
"matchStrings": [
|
|
"image:\\s*\"wordpress:(?<currentValue>[^\"]+)\"",
|
|
"image:\\s*\"mariadb:(?<currentValue>[^\"]+)\""
|
|
],
|
|
"datasourceTemplate": "docker",
|
|
"lookupNameTemplate": "{{{packageName}}}"
|
|
},
|
|
{
|
|
"fileMatch": ["(^|/)\\.drone\\.yml$"],
|
|
"matchStrings": [
|
|
"gomplate/releases/download/v(?<currentValue>[\\d.]+)/gomplate_linux-amd64"
|
|
],
|
|
"datasourceTemplate": "github-releases",
|
|
"lookupNameTemplate": "hairyhenderson/gomplate"
|
|
}
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"matchDatasources": ["docker"],
|
|
"matchPackageNames": ["wordpress"],
|
|
"enabled": true
|
|
},
|
|
{
|
|
"matchDatasources": ["docker"],
|
|
"matchPackageNames": ["mariadb"],
|
|
"enabled": true
|
|
}
|
|
]
|
|
}
|