From 0cb76be0e6935b4c9e6f920ed17b4ea289bc384d Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Mon, 3 Mar 2025 20:38:30 +0800 Subject: [PATCH] ci: use a renovate preset & schedule monthly updates More documentation can be found at https://github.com/haoqunjiang/renovate-presets/blob/main/npm.json5 The schedule is changed to monthly because that better matches the maintainer's availability. --- .github/renovate.json5 | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 0d48fb7..34cc107 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,18 +1,13 @@ { $schema: 'https://docs.renovatebot.com/renovate-schema.json', extends: [ - 'config:base', - 'schedule:weekly', - 'group:allNonMajor', - ':semanticCommitTypeAll(chore)', + 'github>haoqunjiang/renovate-presets:npm.json5', + 'schedule:monthly', ], - labels: ['dependencies'], - rangeStrategy: 'bump', packageRules: [ { depTypeList: ['peerDependencies'], enabled: false, }, ], - ignoreDeps: ['html-tags'], }