From d4f8daec22732093f420b698993a84226643763e Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Fri, 22 Aug 2025 09:34:03 +0200 Subject: [PATCH] improve error message --- .github/workflows/validate_pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate_pr.yml b/.github/workflows/validate_pr.yml index 86a781017d..9546ba4354 100644 --- a/.github/workflows/validate_pr.yml +++ b/.github/workflows/validate_pr.yml @@ -16,7 +16,7 @@ jobs: const titleRegex = /^(\.?[\w\s,{}/]+): .+/; if (!titleRegex.test(prTitle)) { - core.setFailed(`PR title "${prTitle}" does not match required format: type(scope): description`); + core.setFailed(`PR title "${prTitle}" does not match required format: directory, ...: description`); return; }