From 2fdb133e7603030f8ebbd47867956a0a80abff9e Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 10 Sep 2023 21:56:22 +0200 Subject: [PATCH] Add renovate package rule to apply dependencies label --- .github/renovate.json | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 9d1ac4f4f7..d81abb276e 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -3,28 +3,29 @@ "extends": ["config:recommended", ":maintainLockFilesWeekly"], "prConcurrentLimit": 5, "packageRules": [ + { + "matchManagers": ["gomod", "npm", "dockerfile"], + "labels": ["dependencies"] + }, { "groupName": "golang deps non-major", "matchManagers": ["gomod"], "matchUpdateTypes": ["minor", "patch"], - "extends": ["schedule:daily"], - "labels": ["dependencies"] + "extends": ["schedule:daily"] }, { "groupName": "web npm deps non-major", "matchManagers": ["npm"], "matchUpdateTypes": ["minor", "patch"], "matchFileNames": ["web/package.json"], - "extends": ["schedule:daily"], - "labels": ["dependencies"] + "extends": ["schedule:daily"] }, { "groupName": "docs npm deps non-major", "matchManagers": ["npm"], "matchUpdateTypes": ["minor", "patch"], "matchFileNames": ["docs/**/package.json"], - "extends": ["schedule:daily"], - "labels": ["dependencies"] + "extends": ["schedule:daily"] } ] }