From 90b917c38c4a49e106e06505e0ea61ddb7797adc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 3 Apr 2022 22:16:48 +0200 Subject: [PATCH] Configure Renovate (#785) * Add renovate.json * Added a bit more configuration also moved the config into .github subfolder so not to clutter the root folder. * ignore npm updates in docs Co-authored-by: Renovate Bot Co-authored-by: Nils Andresen --- .github/renovate.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..6fc4a0e --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,16 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base" + ], + "dependencyDashboard": false, + "commitMessagePrefix": "chore:", + "labels": ["dependencies"], + "npm": { + "ignorePaths": [ + "**/node_modules/**", + "**/bower_components/**", + "docs/**" + ] + } +}