Skip to content

Commit e430144

Browse files
committed
chore: change dependabot commit prefix message
1 parent 89f8607 commit e430144

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ updates:
1010
time: '06:00'
1111
# Limit the number of open pull requests for version updates to 1
1212
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
1318
groups:
1419
# The name of the group (identifier)
1520
npm-deps:

commitlint.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { UserConfig } from '@commitlint/types';
22

33
const Configuration: UserConfig = {
44
extends: ['@commitlint/config-conventional'],
5+
ignores: [message => message.startsWith('chore: bump')], // Ignore dependency updates
56
};
67

78
export default Configuration;

0 commit comments

Comments
 (0)