Update renovate.json5

This commit is contained in:
ᗪєνιη ᗷυнʟ 2020-12-16 12:59:59 -05:00 committed by GitHub
parent aa3a17a393
commit 51639eb32b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,67 +20,49 @@
// Common library dep // Common library dep
// //
{ {
"datasources": ["helmv3"],
"updateTypes": ["major"], "updateTypes": ["major"],
"bumpVersion": "major", "bumpVersion": "major",
"labels": ["dependency/major"], "labels": ["dependency/major"],
"packagePatterns": [ "packageNames": ["common"]
"common"
]
}, },
{ {
"datasources": ["helmv3"],
"updateTypes": ["minor"], "updateTypes": ["minor"],
"bumpVersion": "minor", "bumpVersion": "minor",
"labels": ["dependency/minor"], "labels": ["dependency/minor"],
"packagePatterns": [ "packageNames": ["common"]
"common"
]
}, },
{ {
"datasources": ["helmv3"],
"updateTypes": ["patch"], "updateTypes": ["patch"],
"bumpVersion": "patch", "bumpVersion": "patch",
"labels": ["dependency/patch"], "labels": ["dependency/patch"],
"packagePatterns": [ "packageNames": ["common"]
"common"
]
}, },
// //
// Other library deps // Other library deps
// //
{ {
"datasources": ["helmv3"],
"updateTypes": ["major"], "updateTypes": ["major"],
"bumpVersion": "major", "bumpVersion": "major",
"labels": ["dependency/major"], "labels": ["dependency/major"],
"excludePackagePatterns": [ "excludePackageNames": ["common"],
"common"
],
"schedule": [ "schedule": [
"every 3 months on the first day of the month" "every 3 months on the first day of the month"
] ]
}, },
{ {
"datasources": ["helmv3"],
"updateTypes": ["minor"], "updateTypes": ["minor"],
"bumpVersion": "minor", "bumpVersion": "minor",
"labels": ["dependency/minor"], "labels": ["dependency/minor"],
"excludePackagePatterns": [ "excludePackageNames": ["common"],
"common"
],
"schedule": [ "schedule": [
"every 2 months on the first day of the month" "every 2 months on the first day of the month"
] ]
}, },
{ {
"datasources": ["helmv3"],
"updateTypes": ["patch"], "updateTypes": ["patch"],
"bumpVersion": "patch", "bumpVersion": "patch",
"labels": ["dependency/patch"], "labels": ["dependency/patch"],
"excludePackagePatterns": [ "excludePackageNames": ["common"],
"common"
],
"schedule": [ "schedule": [
"every 1 months on the first day of the month" "every 1 months on the first day of the month"
] ]