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 <bot@renovateapp.com>
Co-authored-by: Nils Andresen <nils@nils-andresen.de>
This commit is contained in:
renovate[bot] 2022-04-03 22:16:48 +02:00 committed by GitHub
parent edbe9d6ebc
commit 90b917c38c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

16
.github/renovate.json vendored Normal file
View File

@ -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/**"
]
}
}