From 80ceb6af25ea4a697d3713e2187f1999bd8098ca Mon Sep 17 00:00:00 2001 From: Tejas Kumar <100225222+EraKin575@users.noreply.github.com> Date: Tue, 7 May 2024 11:58:05 +0530 Subject: [PATCH] Feat: added postUpdate option in Renovate for go tidy (#429) feat: add postUpdate option in Renovate for go tidy Signed-off-by: EraKin575 --------- Signed-off-by: EraKin575 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- renovate.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index bee7c483..b28c614c 100644 --- a/renovate.json +++ b/renovate.json @@ -1,11 +1,12 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "config:base" + "config:recommended" ], "constraints": { "go": "1.22" }, "ignorePresets": [":prHourlyLimit2"], - "reviewers": ["team:maintainers"] + "reviewers": ["team:maintainers"], + "postUpdateOptions": ["gomodTidy"] }