From 4e66d79fdb6390add06feb859e637c8ce45ff333 Mon Sep 17 00:00:00 2001 From: "Jonathan Gonzalez V." Date: Fri, 6 Dec 2024 12:36:00 +0100 Subject: [PATCH] chore: limit renovate PRs and rebases (#56) Limit the amount of PRs opened by renovate and also do not auto rebase the PRs to avoid consuming all the GitHub Runners Signed-off-by: Jonathan Gonzalez V. --- renovate.json5 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/renovate.json5 b/renovate.json5 index 165e33a..c6b202a 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -9,6 +9,8 @@ ":automergeMinor", ":automergeDigest" ], + rebaseWhen: 'never', + prConcurrentLimit: 5, "gomod": { // Do not manage the dagger go.mod file "ignorePaths": ["dagger/gotest/go.mod"],