Create renovate-config.js

This commit is contained in:
Kjeld Schouten-Lebbing
2022-05-11 11:04:03 +02:00
committed by GitHub
parent 54f9f34a41
commit 1a0170079e

25
.github/renovate-config.js vendored Normal file
View File

@@ -0,0 +1,25 @@
module.exports = {
dryRun: false,
username: 'truecharts-bot',
gitAuthor: 'truecharts-bot <bot@truecharts.org>',
onboarding: false,
platform: 'github',
repositories: [
'truecharts/library-charts',
],
packageRules: [
{
description: 'lockFileMaintenance',
matchUpdateTypes: [
'pin',
'digest',
'patch',
'minor',
'major',
'lockFileMaintenance',
],
dependencyDashboardApproval: false,
stabilityDays: 0,
},
],
};