seafile-containerized/.github/renovate.json
2024-02-17 12:55:37 +01:00

29 lines
668 B
JSON

{
"extends": ["config:base"],
"separateMajorMinor": true,
"packageRules": [
{
"datasources": ["docker"],
"packageNames": ["ubuntu"],
"pinDigests": true
},
{
"packageNames": ["haiwen/seahub"],
"commitMessageTopic": "Seafile"
}
],
"kubernetes": {
"fileMatch": ["k8s/.+\\.yaml$"]
},
"customManagers": [
{
"customType": "regex",
"fileMatch": [".*Dockerfile$"],
"matchStrings": ["ENV SEAFILE_VERSION=(?<currentValue>.*?)\\n"],
"depNameTemplate": "haiwen/seahub",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.*)-server$"
}
]
}