From aabb6c61327edc809830262cf4c58c1defa3cee4 Mon Sep 17 00:00:00 2001 From: Nick Groenen Date: Sat, 24 Aug 2024 14:49:34 +0200 Subject: [PATCH] Disable semantic commits in renovate The default heuristics were picking up semantic commits even though we don't use those on this repository. Explicitly disable them to prevent that. --- .github/renovate.json5 | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index a9cefd9..ab59e82 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -4,6 +4,7 @@ "schedule:monthly", // Group updates to linters together in one PR "group:linters", + ":semanticCommitsDisabled" ], dependencyDashboard: true, "labels": ["dependencies"],