Skip to content

Commit

Permalink
Chore(deps): Ignore dependabot commits with bump message
Browse files Browse the repository at this point in the history
  • Loading branch information
literat committed Sep 21, 2021
1 parent 6dff65c commit ddef2c2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,13 @@ module.exports = {
ignores: [
(commit) => commit.includes('[ci-skip]'),
(commit) => commit.includes('Pull request'),
/**
* Ignore Dependabot commits because they are violating sentence case rule
* and cannot be configured or forced to respect commitlint configuration.
*
* @see https://github.com/dependabot/dependabot-core/issues/1666
* @see https://github.com/dependabot/dependabot-core/issues/406
*/
(commit) => commit.includes('Deps: bump'),
],
};

0 comments on commit ddef2c2

Please sign in to comment.