From d9933db933a1b4c5c3eb6b3de34d19245e72af99 Mon Sep 17 00:00:00 2001 From: Robin Lungwitz Date: Fri, 5 Jun 2026 13:54:06 +0200 Subject: [PATCH 1/2] chore(renovate-preset): enable automerge for security updates **WHY** Reduce time to fix for security updates --- renovate-presets/security.json5 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/renovate-presets/security.json5 b/renovate-presets/security.json5 index 4940883..20e32a2 100644 --- a/renovate-presets/security.json5 +++ b/renovate-presets/security.json5 @@ -22,6 +22,14 @@ ], vulnerabilityAlerts: { + // enable automerging of security updates to reduce the time to fix vulnerabilities + automerge: true, + // Enable Github automerge + platformAutomerge: true, + // Create PRs only if the stability days check has passed + prCreation: "not-pending", + // This prevents premature PR merges + internalChecksFilter: "strict", // no grouping groupName: null, // may be created at any time From 6437bc825f241fe690fec70cbd5209e3753d9570 Mon Sep 17 00:00:00 2001 From: Robin Lungwitz Date: Fri, 5 Jun 2026 14:00:21 +0200 Subject: [PATCH 2/2] fix(renovate-preset): align comment with config --- renovate-presets/automerge.json5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate-presets/automerge.json5 b/renovate-presets/automerge.json5 index 8568f66..5215a84 100644 --- a/renovate-presets/automerge.json5 +++ b/renovate-presets/automerge.json5 @@ -24,8 +24,8 @@ Prerequisites for this preset: // Enable Github automerge (renovate loses control over the merge schedule) platformAutomerge: false, // Create PRs only if the stability days check has passed - // This prevents premature PR merges prCreation: "not-pending", + // This prevents premature PR merges internalChecksFilter: "strict", rebaseWhen: "conflicted", },