From 8607f8b32ce0a6be1c85822abf1b0042e2c70f41 Mon Sep 17 00:00:00 2001 From: Balazs Gibizer Date: Mon, 11 Nov 2024 18:27:39 +0100 Subject: [PATCH] Allow git reset as post task It turned out that make force-dump alone is not enough. We need to git reset away what renovate did first to avoid leaking through transitive dependency bumps like k8s.io. Related: OSPRH-8355 --- renovate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.sh b/renovate.sh index f172c66..e485f9c 100644 --- a/renovate.sh +++ b/renovate.sh @@ -17,7 +17,7 @@ do --token="${RENOVATE_TOKEN}" \ --git-author="OpenStack K8s CI " \ --update-not-scheduled=false \ - --allowed-post-upgrade-commands="^make manifests generate,^make gowork,^go mod tidy,^make tidy,^make force-bump" \ + --allowed-post-upgrade-commands="^make manifests generate,^make gowork,^go mod tidy,^make tidy,^make force-bump,^git reset" \ openstack-k8s-operators/openstack-operator \ openstack-k8s-operators/lib-common \ openstack-k8s-operators/infra-operator \