Skip to content

Commit 1f4d4a2

Browse files
fix: increase version only when dependabot change not dev deps (#18)
1 parent 7953523 commit 1f4d4a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Version } from './version';
44

55
const MAJOR_REGEX = new RegExp('^(\\w+!: |\\w+\\(.+\\)!: )|BREAKING CHANGE');
66
const MINOR_REGEX = new RegExp('^(feat: |feat\\(.+\\): )');
7-
const PATCH_REGEX = new RegExp('^(fix: |fix\\(.+\\): |chore\\(deps.*\\): )');
7+
const PATCH_REGEX = new RegExp('^(fix: |fix\\(.+\\): |chore\\(deps\\): )');
88

99
const github = GithubService.create();
1010

0 commit comments

Comments
 (0)