seafile-containerized/.github/renovate.json

34 lines
819 B
JSON
Raw Permalink Normal View History

2023-10-19 08:17:51 +00:00
{
2024-02-17 12:12:36 +00:00
"extends": ["config:base", ":semanticCommitsDisabled"],
2023-10-19 08:17:51 +00:00
"separateMajorMinor": true,
2024-02-19 10:33:44 +00:00
"separateMinorPatch": true,
2024-02-19 10:37:15 +00:00
"separateMultipleMajor": true,
2023-10-19 08:17:51 +00:00
"packageRules": [
{
"datasources": ["docker"],
"packageNames": ["ubuntu"],
"pinDigests": true
2024-02-17 11:55:37 +00:00
},
{
"packageNames": ["haiwen/seahub"],
"commitMessageTopic": "Seafile"
2023-10-19 08:17:51 +00:00
}
2024-01-17 09:43:47 +00:00
],
"kubernetes": {
"fileMatch": ["k8s/.+\\.yaml$"]
2024-02-17 11:55:37 +00:00
},
"customManagers": [
{
"customType": "regex",
"fileMatch": [".*Dockerfile$"],
"matchStrings": ["ENV SEAFILE_VERSION=(?<currentValue>.*?)\\n"],
"depNameTemplate": "haiwen/seahub",
2024-03-14 10:00:40 +00:00
"datasourceTemplate": "github-tags",
2024-02-17 11:55:37 +00:00
"extractVersionTemplate": "^v(?<version>.*)-server$"
}
],
"pip_requirements": {
"fileMatch": [".*Dockerfile$"]
}
2023-10-19 08:17:51 +00:00
}