-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cz.yaml
48 lines (48 loc) · 1.82 KB
/
.cz.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
# Commitizen custom configuration.
# Here we extend it to add all our recognised types into the changelog.
# The default ignores pretty-much anything other than 'feat' and 'fix'.
#
# See the default at...
# https://github.com/commitizen-tools/commitizen/
# blob/095f02e6c419b60c90aa84b8cebc9e9eacc8a391/commitizen/defaults.py#L83
commitizen:
name: cz_customize
# What's the first revision we're interested imn?
# For us it's the revision we started using
# enforcing the use of conventional commits.
# Prior to 0.1.25 we weren't using it on every commit
# and didn't have everything ready for change-logs.
changelog_start_rev: 1.0.0
customize:
schema_pattern: "^(?P<change_type>feat|fix|perf|refactor|remove|style|test|build|docs|ci|BREAKING CHANGE)(?:\\((?P<scope>[^()\\r\\n]*)\\)|\\()?(?P<breaking>!)?:\\s(?P<message>.*)?"
commit_parser: "^(?P<change_type>feat|fix|perf|refactor|remove|style|test|build|docs|ci|BREAKING CHANGE)(?:\\((?P<scope>[^()\\r\\n]*)\\)|\\()?(?P<breaking>!)?:\\s(?P<message>.*)?"
# The changelog_pattern identifies the commit types
# that will be included.
# Build the changelog with 'cz ch' on the staging or production branches.
changelog_pattern: "^(feat|fix|perf|refactor|remove|style|test|build|docs|ci)?"
# A mapping of type to its group name in the changelog.
# We call 'feat' commits 'New Features'
change_type_map:
build: Build
docs: Documentation
feat: New Features
fix: Bug Fixes
perf: Performance Improvements
refactor: Refactoring
remove: Removed
style: Stylistic Changes
ci: CI/CD
test: Testing
# The order of commit types in the changelog...
change_type_order:
- "feat"
- "fix"
- "perf"
- "refactor"
- "remove"
- "style"
- "test"
- "build"
- "ci"
- "docs"