ci: warn on long commit body line (#12)

Avoid failing the commitlint task on long commit body lines and just
raise a warning. This allows renovate tabled commit messages to pass the
ci.

Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com>
This commit is contained in:
Francesco Canovai 2024-09-27 10:07:47 +02:00 committed by GitHub
parent 53f5f4cb83
commit d7235e3292
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,7 @@ const Configuration= {
rules: {
'body-empty': [1, 'never'],
'body-case': [2, 'always', 'sentence-case'],
'body-max-line-length': [1, 'always', 100],
'references-empty': [1, 'never'],
'signed-off-by': [2, 'always', 'Signed-off-by:'],
},