From 534d02f78ce9ffe48533fb267010b83a3bddb7a4 Mon Sep 17 00:00:00 2001 From: "Sebastian \"Sebbie\" Silbermann" Date: Mon, 25 Nov 2024 14:42:30 +0100 Subject: [PATCH] chore: fix error message when PR title does not conform to pattern Pattern is `^[^A-Z].*$ ` which means the string can't start with uppercase. The message was saying the opposite ("doesn't start with a lowercase character). --- .github/workflows/lint-pr-title.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-pr-title.yml b/.github/workflows/lint-pr-title.yml index f5ae0c8e99d4a..1610f71bde4c9 100644 --- a/.github/workflows/lint-pr-title.yml +++ b/.github/workflows/lint-pr-title.yml @@ -30,4 +30,4 @@ jobs: # The variables `subject` and `title` can be used within the message. subjectPatternError: | The subject "{subject}" found in the pull request title "{title}" doesn't match the configured pattern. - Please ensure that the subject doesn't start with a lowercase character. + Please ensure that the subject doesn't start with an uppercase character.