From 087089c36c776a72db3bc210ab1bf75c4001fa34 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Sat, 26 Feb 2022 00:51:35 +0100 Subject: [PATCH] ci: instruct renovate to not update/override merge ready PRs (#24481) Sometimes Renovate proposes an update and we need to add some manual fixups, like updating a size golden. For this we push to same upstream branch. Renovate will update the PR though when another new revision/version becomes available, overriding the fixup and discarding it. This happened quite often now and causes significantly more work required by the dev-infra time. --- renovate.json | 1 + 1 file changed, 1 insertion(+) diff --git a/renovate.json b/renovate.json index f2274719a026..e379e73f5a80 100644 --- a/renovate.json +++ b/renovate.json @@ -3,6 +3,7 @@ "automerge": false, "baseBranches": ["master"], "enabledManagers": ["npm", "bazel", "github-actions"], + "stopUpdatingLabel": "merge ready", "labels": ["target: patch", "merge safe"], "lockFileMaintenance": { "enabled": true