File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,11 @@ updates:
10
10
time : ' 06:00'
11
11
# Limit the number of open pull requests for version updates to 1
12
12
open-pull-requests-limit : 1
13
+ # Commit message format
14
+ commit-message :
15
+ # Prefix all commit messages and pull request titles with "fix"
16
+ prefix : chore
17
+ # Group updates into a single pull request
13
18
groups :
14
19
# The name of the group (identifier)
15
20
npm-deps :
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import type { UserConfig } from '@commitlint/types';
2
2
3
3
const Configuration : UserConfig = {
4
4
extends : [ '@commitlint/config-conventional' ] ,
5
+ ignores : [ message => message . startsWith ( 'chore: bump' ) ] , // Ignore dependency updates
5
6
} ;
6
7
7
8
export default Configuration ;
You can’t perform that action at this time.
0 commit comments