Skip to content

Commit

Permalink
fix: increase maximum size of commit messages
Browse files Browse the repository at this point in the history
Increase the maximum size of commit messages to avoid
dependabot failing on commitlint checks.

Signed-off-by: Miguel Martín <[email protected]>
  • Loading branch information
mmartinv committed Nov 26, 2024
1 parent c78da96 commit e1e2d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/commitlint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const validateBodyMaxLengthIgnoringDeps = async (parsedCommit) => {
&& body != null
&& body.includes('Updates the requirements on');

const bodyMaxLineLength = 100;
const bodyMaxLineLength = 1000;

return [
isDepsCommit || !body || maxLineLength(body, bodyMaxLineLength),
Expand Down

0 comments on commit e1e2d22

Please sign in to comment.