From 56dec8eba9512d25773b40c650db900d7114d282 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten-Lebbing Date: Thu, 16 Jun 2022 12:31:05 +0200 Subject: [PATCH] Create renovate-config.js --- .github/renovate-config.js | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/renovate-config.js diff --git a/.github/renovate-config.js b/.github/renovate-config.js new file mode 100644 index 00000000..94f7dec2 --- /dev/null +++ b/.github/renovate-config.js @@ -0,0 +1,25 @@ +module.exports = { + dryRun: false, + username: 'truecharts-bot', + gitAuthor: 'truecharts-bot ', + onboarding: false, + platform: 'github', + repositories: [ + 'truecharts/truetool', + ], + packageRules: [ + { + description: 'lockFileMaintenance', + matchUpdateTypes: [ + 'pin', + 'digest', + 'patch', + 'minor', + 'major', + 'lockFileMaintenance', + ], + dependencyDashboardApproval: false, + stabilityDays: 0, + }, + ], +};