From 4d8cf9cfaf32ab2b8b13cf21f76972c68b532e3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20=C3=96sterlund?= Date: Fri, 29 Dec 2023 20:26:37 +0100 Subject: [PATCH 1/2] ci: configure renovate --- renovate.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..bc164ab --- /dev/null +++ b/renovate.json @@ -0,0 +1,20 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:base", ":disableDependencyDashboard"], + "packageRules": [ + { + "matchDepTypes": ["devDependencies"], + "matchUpdateTypes": ["patch", "minor"], + "groupName": "devDependencies (non-major)", + "schedule": ["before 5am on the first day of the month"] + }, + { + "groupName": "Schedule-X monorepo packages", + "packagePatterns": ["^@schedule-x.*"] + } + ], + "ignoreDeps": ["vue", "react-dom"], + "ignorePaths": [ + ".github/workflows/release.yml" + ] +} From 69d5ba1c6c41ec4cb9fc8589b6f2142a99ae2af1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20=C3=96sterlund?= Date: Fri, 29 Dec 2023 20:27:32 +0100 Subject: [PATCH 2/2] ci: remove redundant ignoreDeps value --- renovate.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index bc164ab..f323bae 100644 --- a/renovate.json +++ b/renovate.json @@ -13,8 +13,6 @@ "packagePatterns": ["^@schedule-x.*"] } ], - "ignoreDeps": ["vue", "react-dom"], - "ignorePaths": [ - ".github/workflows/release.yml" - ] + "ignoreDeps": ["vue"], + "ignorePaths": [".github/workflows/release.yml"] }