From 8ad38f99e8a2fb300090e45ddf3458a6e92336f8 Mon Sep 17 00:00:00 2001 From: Korbinian Stoemmer Date: Tue, 13 Feb 2024 08:27:34 +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 fcc54df..fbacd45 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]).+$