From 681e0afca4933b88cd96a58201ee38198cda61ee Mon Sep 17 00:00:00 2001 From: Yuvraj Singh Chauhan Date: Thu, 20 Aug 2026 04:26:56 +0530 Subject: [PATCH 1/2] chore: add renovate configuration for go dependency automation --- .github/renovate.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 00000000..90b0cdf8 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "postUpdateOptions": [ + "gomodTidy", + "gomodVendor" + ], + "packageRules": [ + { + "description": "Group Kubernetes dependencies together", + "matchPackagePatterns": [ + "^k8s\\.io/", + "^sigs\\.k8s\\.io/" + ], + "groupName": "kubernetes packages" + }, + { + "description": "Group GitHub Actions updates", + "matchMatchers": ["github-actions"], + "groupName": "github actions" + } + ] +} From e217258251194a4d07ca791728ba31ccc9fb9259 Mon Sep 17 00:00:00 2001 From: Yuvraj Singh Chauhan Date: Thu, 20 Aug 2026 04:36:58 +0530 Subject: [PATCH 2/2] fix: typo in rennovate Signed-off-by: Yuvraj Singh Chauhan --- .github/renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 90b0cdf8..5d181337 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -18,7 +18,7 @@ }, { "description": "Group GitHub Actions updates", - "matchMatchers": ["github-actions"], + "matchManagers": ["github-actions"], "groupName": "github actions" } ]