From 324502cafccb6ae0559ce8a577fc2be41c82174e Mon Sep 17 00:00:00 2001 From: Korbinian Stoemmer Date: Tue, 13 Feb 2024 08:29:23 +0100 Subject: [PATCH] require title to start lower case --- .github/workflows/lint-conventional-prs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-conventional-prs.yml b/.github/workflows/lint-conventional-prs.yml index fcc54dff..3c8f3c5f 100644 --- a/.github/workflows/lint-conventional-prs.yml +++ b/.github/workflows/lint-conventional-prs.yml @@ -28,4 +28,4 @@ jobs: test requireScope: false # https://regex101.com/r/YybDgS/1 - subjectPattern: ^([A-Z].*[^.]|bump .*)$ + subjectPattern: ^(?![A-Z]).+$