Create renovate-config.js

This commit is contained in:
Kjeld Schouten-Lebbing 2022-06-16 12:31:05 +02:00 committed by GitHub
parent 9e83dfb090
commit 56dec8eba9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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/truetool',
],
packageRules: [
{
description: 'lockFileMaintenance',
matchUpdateTypes: [
'pin',
'digest',
'patch',
'minor',
'major',
'lockFileMaintenance',
],
dependencyDashboardApproval: false,
stabilityDays: 0,
},
],
};