From 31bb401d3629526218c28164b509c2eb1b512ad8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 9 Sep 2022 19:41:57 +0300 Subject: [PATCH] Configure Renovate (#21) * Add renovate.json * Configure renovate * Do not run tests Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Anatoly Laskaris --- .github/renovate.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..24924bb --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,17 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base" + ], + "enabledManagers": ["cargo"], + "packageRules": [ + { + "matchLanguages": ["rust"], + "matchUpdateTypes": [ + "minor", + "patch" + ], + "groupName": "all non-major Rust dependencies" + } + ] +}