From 1577ccd4637b11d6339424e7418a05eb9696fc03 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Tue, 23 Jan 2024 00:47:32 +0000 Subject: [PATCH 1/2] Add renovate.json --- renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..5db72dd --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ] +} -- 2.40.1 From 1423ba5f608734ae9c5c313dc4ad3bdd55b1b5b6 Mon Sep 17 00:00:00 2001 From: SeanOMik Date: Mon, 22 Jan 2024 19:50:59 -0500 Subject: [PATCH 2/2] feat: package rules add more labels --- renovate.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/renovate.json b/renovate.json index 5db72dd..ce3856e 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,34 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:recommended" + ], + "dependencyDashboard": true, + "dependencyDashboardTitle": "Renovate Dashboard", + "labels": ["renovatebot"], + "packageRules": [ + { + "matchUpdateTypes": ["major"], + "labels": ["type/major"] + }, + { + "matchUpdateTypes": ["minor"], + "labels": ["type/minor"] + }, + { + "matchUpdateTypes": ["patch"], + "labels": ["type/patch"] + }, + { + "matchUpdateTypes": ["digest"], + "labels": ["type/digest"] + }, + { + "matchDatasources": ["docker"], + "addLabels": ["renovate/container"] + }, + { + "matchDatasources": ["helm"], + "addLabels": ["renovate/helm"] + } ] } -- 2.40.1