Skip to content

Commit

Permalink
fix: ignore dependabot commit message length (#275)
Browse files Browse the repository at this point in the history
* fix: ignore dependabot commit message length
  • Loading branch information
rimasirich authored Aug 28, 2023
1 parent e4536b7 commit 7bc91bc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// override commitlint ignores as suggested by https://github.com/dependabot/dependabot-core/issues/2445#issuecomment-949633412
module.exports = {
extends: ["@commitlint/config-conventional"],
ignores: [(message) => /^bump \[.+]\(.+\) from .+ to .+\.$/m.test(message)],
};

0 comments on commit 7bc91bc

Please sign in to comment.