seafile-containerized/.github/renovate.json
2024-02-19 11:37:15 +01:00

34 lines
823 B
JSON

{
"extends": ["config:base", ":semanticCommitsDisabled"],
"separateMajorMinor": true,
"separateMinorPatch": true,
"separateMultipleMajor": 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$"
}
],
"pip_requirements": {
"fileMatch": [".*Dockerfile$"]
}
}