From 0b3760c116c370589a03e7f4edf9e16e612881e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20F=C3=A4rnstrand?= Date: Wed, 20 Mar 2024 17:18:24 +0100 Subject: [PATCH] Change max git commit message subject line length to 72 --- .github/workflows/git-commit-message-style.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/git-commit-message-style.yml b/.github/workflows/git-commit-message-style.yml index 6b5323b6cb37..75e3565a86ab 100644 --- a/.github/workflows/git-commit-message-style.yml +++ b/.github/workflows/git-commit-message-style.yml @@ -14,8 +14,8 @@ jobs: with: # Commit messages are allowed to be subject only, no body allow-one-liners: 'true' - # This action defaults to 50 char subjects, but 74 is fine. - max-subject-line-length: '74' + # This action defaults to 50 char subjects, but 72 is fine. + max-subject-line-length: '72' # The action's wordlist is a bit short. Add more accepted verbs additional-verbs: 'restart, coalesce'