Skip to content

Commit

Permalink
ci: ignore semantic commit
Browse files Browse the repository at this point in the history
  • Loading branch information
maafaishal committed Mar 10, 2024
1 parent 264e1d0 commit 7d18415
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
13 changes: 13 additions & 0 deletions .commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const automaticCommitPattern = /^chore\(release\):.*\[skip ci]/;

const commitlintConfig = {
"extends": [
"@commitlint/config-conventional"
],

ignores: [
commitMsg => automaticCommitPattern.test(commitMsg)
]
};

module.exports = commitlintConfig;
5 changes: 0 additions & 5 deletions .commitlintrc

This file was deleted.

0 comments on commit 7d18415

Please sign in to comment.