From e3dd6b0e72abee0ed824ab25bbbfc011aea2ce07 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 19 Nov 2021 15:59:52 +1100 Subject: [PATCH] Configure Renovate (#4294) * Add renovate.json * Change renovate config file to be a dotfile * Add "dependencies" label to Renovate PRs * Disable Renovate for Ruby Bundler This is already handled with Dependabot which is better integrated with GitHub. Co-authored-by: Renovate Bot Co-authored-by: Matthew Haughton <3flex@users.noreply.github.com> --- .renovaterc.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .renovaterc.json diff --git a/.renovaterc.json b/.renovaterc.json new file mode 100644 index 000000000..ccc7fc503 --- /dev/null +++ b/.renovaterc.json @@ -0,0 +1,10 @@ +{ + "labels": ["dependencies"], + "packageRules": [{ + "matchManagers": ["bundler"], + "enabled": false + }], + "extends": [ + "config:base" + ] +}