From c35d1be12d600b3e82d9fcf9a587794d5b0c5e9b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 2 May 2021 20:03:54 +0200 Subject: [PATCH] Configure Renovate (#2318) * Add renovate.json * Configure renovate.json * Add a rule for mono support Co-authored-by: Renovate Bot Co-authored-by: JustArchi --- .github/renovate.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 000000000..635f18e22 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,19 @@ +{ + "extends": [ + "config:base", + ":assignee(JustArchi)", + ":automergeDigest", + ":automergeMinor", + ":disableRateLimiting", + ":label(Automatic)" + ], + "git-submodules": { + "enabled": true + }, + "packageRules": [ + { + "allowedVersions": "<= 3.0", + "matchPackageNames": [ "Microsoft.Extensions.Configuration.Json", "Microsoft.Extensions.Logging.Configuration" ] + } + ] +}