From c45bbee4a3ba10ee999c7fde559a9283c0728c96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Ch=C4=99ci=C5=84ski?= Date: Tue, 27 Sep 2022 19:07:29 +0200 Subject: [PATCH] Add renovate config (#2182) * Add renovate config * Update renovate.json * Remove unnecassary config * Update renovate.json * Match only minor and patch updates * Disable major updates --- renovate.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000000..61ebaed0d1 --- /dev/null +++ b/renovate.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base", + "schedule:monthly", + ":maintainLockFilesMonthly", + ":preserveSemverRanges", + ":rebaseStalePrs", + ":disableMajorUpdates" + ], + "enabledManagers": [ + "nuget" + ], + "packageRules": [ + { + "matchManagers": ["nuget"], + "groupName": "Nuget updates", + "groupSlug": "nuget", + "matchUpdateTypes": [ + "minor", + "patch" + ] + } + ] +}