From 143b415e22ef6bd5cc5be331e6ee08d38e897cd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Val=C3=A9rian=20Rey?= Date: Sun, 22 Feb 2026 12:26:37 +0100 Subject: [PATCH] ci: Improve error message in title checker --- .github/workflows/title-checker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/title-checker.yml b/.github/workflows/title-checker.yml index ff3fef00..ea4e36d5 100644 --- a/.github/workflows/title-checker.yml +++ b/.github/workflows/title-checker.yml @@ -22,7 +22,7 @@ jobs: const match = title.match(regex); if (!match) { - core.setFailed("PR title does not follow format: 'type(scope)!: description'"); + core.setFailed("PR title does not follow any of the accepted formats:\n 'type(scope)!: Description'\n 'type(scope): Description'\n 'type!: Description'\n 'type: Description'\n See https://www.conventionalcommits.org/ for more details"); return; }