From 63a84dbb84ca60adbed0873ba8dfa0db3ace9903 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Correa=20G=C3=B3mez?= Date: Thu, 21 Nov 2024 16:17:31 +0100 Subject: [PATCH] mrhlpr.json: drop the unknown regex (MR 5840) This regex seems to have served to be a bit more flexible than the actual pass one, for any kind of exceptions needed. However, it resulted in basically every MR since the introduction of the COMMITSTYLE, and most likely before, to be caught by that regex instead of the pass one. As we have made the pass regex more flexible now, we can now remove this. This should help keep commit messages more standardized. If there's a reason for a commit to be different, then the merger can just ignore it. --- .mrhlpr.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/.mrhlpr.json b/.mrhlpr.json index 160e60577..8a58ab784 100644 --- a/.mrhlpr.json +++ b/.mrhlpr.json @@ -5,9 +5,6 @@ "^CI: [a-z-0-9*{}\\(\\)\\.,_ ][A-Za-z\\/\\-0-9*{}\\.,_ ]+( \\(MR \\d+\\)|)$", "^mrhlpr.json: [a-z-0-9*{}\\(\\)\\.,_ ][A-Za-z\\/\\-0-9*{}\\.,_ ]+( \\(MR \\d+\\)|)$", "^pmaports.cfg: [a-z-0-9*{}\\(\\)\\.,_ ][A-Za-z\\/\\-0-9*{}\\.,_ ]+( \\(MR \\d+\\)|)$" - ], - "unknown": [ - "^[a-z-0-9_.*{}\\/]+: [a-z-0-9*{}\\(\\)\\.,_ ][A-Za-z\\/\\-0-9*{}\\.,_ ]+( \\(MR \\d+\\)|)$" ] } }