From 4edfda1e88aeea2896f6cfacb6efcff53af0c7d6 Mon Sep 17 00:00:00 2001 From: Marek Czernek Date: Wed, 21 Feb 2024 16:44:55 +0100 Subject: [PATCH] Fix regex in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e167fab..63f544b 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ jobs: - name: Check Line Length uses: gsactions/commit-message-checker@v2 with: - pattern: '^[^#].{74}' + pattern: '^[^#].{1,74}' error: 'The maximum line length of 74 characters is exceeded.' excludeDescription: 'true' # optional: this excludes the description body of a pull request excludeTitle: 'true' # optional: this excludes the title of a pull request