From 1423ba5f608734ae9c5c313dc4ad3bdd55b1b5b6 Mon Sep 17 00:00:00 2001 From: SeanOMik Date: Mon, 22 Jan 2024 19:50:59 -0500 Subject: [PATCH] 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"] + } ] }