From 27de0ce2a29893c8e2e14a8b71c2b8e8bc1f6aef Mon Sep 17 00:00:00 2001 From: Meier Lukas Date: Fri, 17 Oct 2025 23:05:56 +0200 Subject: [PATCH] chore(renovate): prevent special characters in branch name --- .github/renovate.json5 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 4f136e5f6..e09f51e56 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -21,4 +21,6 @@ automerge: false, baseBranches: ["dev"], dependencyDashboard: false, + // prevent special characters in branch names (otherwise git errors occur on windows) + branchNameStrict: true, }