From 3199cc462e5772f1f8b2fbd6e61818f536d09723 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 16 Aug 2026 15:28: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" + ] +} From fe0b57de2c03c2280893a08746384fec56afa3e4 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Sun, 16 Aug 2026 10:41:54 -0500 Subject: [PATCH 2/2] Update renovate.json with new package rules Added labels for dependencies and Go package rules. --- renovate.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/renovate.json b/renovate.json index 5db72dd..b65ee79 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,17 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:recommended" + ], + "addLabels": ["dependencies"], + "packageRules": [ + { + "matchManagers": ["gomod"], + "addLabels": ["go"] + }, + { + "matchManagers": ["gomod"], + "matchDepTypes": ["golang"], + "enabled": true + } ] }