Skip to content

Commit

Permalink
fix: commitlint on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
rpidanny committed Jul 11, 2024
1 parent a88e381 commit 720fe03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// commitlint.config.js
module.exports = {
extends: ['@commitlint/config-conventional'],
ignores: [(message) => /^Bumps \[.+]\(.+\) from .+ to .+\.$/m.test(message)],
ignores: [message => /\[skip ci\]/g.test(message)],
}

0 comments on commit 720fe03

Please sign in to comment.