From 634fea9a046784fcb7a3e25578f7e11976f24da6 Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Mon, 25 Apr 2022 11:50:36 +0200 Subject: [PATCH] chore(deps): configure renovate --- .github/renovate.json | 33 +++++++++++++++++++++++++++++++++ renovate.json | 5 ----- 2 files changed, 33 insertions(+), 5 deletions(-) create mode 100644 .github/renovate.json delete mode 100644 renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 000000000..f44be1d61 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,33 @@ +{ + "extends": [ + "config:base", + ":enablePreCommit", + ":preserveSemverRanges", + ":disableDependencyDashboard" + ], + "labels": ["dependencies"], + "packageRules": [ + { + "matchManagers": ["github-actions"], + "addLabels": ["ci"] + }, + { + "matchManagers": ["composer"], + "addLabels": ["php"] + }, + { + "matchManagers": ["pip_setup", "pip_requirements"], + "addLabels": ["python"] + }, + { + "matchPaths": ["website/**"], + "addLabels": ["javascript"], + "extends": ["monorepo:docusaurus"] + }, + { + "matchUpdateTypes": ["patch"], + "matchPaths": ["website/**", ".github/workflows/*"], + "automerge": true + } + ] +} diff --git a/renovate.json b/renovate.json deleted file mode 100644 index f45d8f110..000000000 --- a/renovate.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "extends": [ - "config:base" - ] -}