From 5a2422e66ffdc43fbf5b2a5e9de81d27ec524017 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 9 Sep 2022 17:34:20 +0300 Subject: [PATCH] Configure Renovate (#19) * Add renovate.json * Update renovate config Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Anatoly Laskaris --- .github/renovate.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..d2788c2 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,29 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base" + ], + "enabledManagers": ["cargo", "npm"], + "packageRules": [ + { + "matchLanguages": ["rust"], + "matchUpdateTypes": [ + "minor", + "patch" + ], + "groupName": "all non-major Rust dependencies" + }, + { + "matchLanguages": ["js"], + "matchUpdateTypes": [ + "minor", + "patch" + ], + "groupName": "all non-major JS dependencies" + }, + { + "matchPackagePatterns": ["^@wasmer", "^wasmer"], + "enabled": false + } + ] +}