From e4f3c571ecdfde583bb035341cceeb0aa508d29b Mon Sep 17 00:00:00 2001 From: Kenneth Rosario Date: Mon, 9 Jan 2023 13:53:33 -0800 Subject: [PATCH] fix: make renovatebot's ignorePath and grouping of non-major updates work correctly (#505) --- .github/renovate.json | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 2cd54a7f..9b0cb730 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,34 +1,20 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ + "globalExtends": [ "config:base" ], + "extends": ["group:allNonMajor", "schedule:monthly"], "packageRules": [ { "description": "Create a PR whenever there is a new major version", "matchUpdateTypes": [ "major" ] - }, - { - "description": "Create a PR grouping all non-major dependencies", - "matchPackagePatterns": [ - "*" - ], - "matchUpdateTypes": [ - "minor", - "patch" - ], - "groupName": "all non-major dependencies", - "groupSlug": "all-minor-patch" } ], "ignorePaths": [ "docs/**", "experimental/**" ], - "pinVersions": false, - "schedule": [ - "every 3 months on the first day of the month" - ] + "pinVersions": false }