File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,9 @@ changelog:
66
66
67
67
```
68
68
* ` convention `
69
+ * ` commitMessageRegexPattern ` custom regex pattern for commit messages
70
+ * the default regex pattern for Conventional Commit format is ` ^(?<type>\w+)(?:\((?<scope>[^()]+)\))?(?<breaking>!)?:\s*(?<description>.+) `
71
+ * need to use add to this pattern (beginning or end) if you want to keep following the Conventional Commit format
69
72
* ` commitTypes ` an array of expected commit types
70
73
* show warnings for unexpected types
71
74
* if not set or empty commit type validation is disabled
@@ -77,8 +80,6 @@ changelog:
77
80
* ` releaseTagGlobPattern ` glob pattern to filter for release tags
78
81
* release tags must contain semantic version (` [0-9]+\.[0-9]+\.[0-9]+ ` )
79
82
* default ` * `
80
- * ` issueRegexPattern ` regex pattern to find issue IDs
81
- * e.g. Jira issue pattern ` [A-Z]{3,}-\\d+ `
82
83
83
84
* ` changelog `
84
85
* ` commitTypes ` filter commits by type
@@ -107,6 +108,8 @@ changelog:
107
108
* ` %issue% ` issue id placeholder
108
109
* eg ` https://jira.example.org/browse/%issue% `
109
110
* if not set or empty link generation is disabled
111
+ * ` issueRegexPattern ` regex pattern to find issue IDs
112
+ * e.g. Jira issue pattern ` [A-Z]{3,}-\\d+ `
110
113
111
114
112
115
### Automatically Validate Commit Message Convention before Commit
You can’t perform that action at this time.
0 commit comments