-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCCVARN.yml
78 lines (78 loc) · 1.87 KB
/
CCVARN.yml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# The major-minor-patch version that should be used when parsing the commits.
# This option will only be taken into account when the current HEAD is not a tagged
# build, and the value is higher than the last tagged release.
next-version: 1.0.0
# The pre-release tag to use as a default for non-tagged releases (tagged releases will override this option).
tag: alpha
# The types and scope that should be consider valid, as well as which part of the version to bump when the type+scope matches.
# Additionally the headers in the changelog can be configured,
# and wether the types+scope should be included in the changelog by default
# (breaking changes will always be included in the changelog).
types:
- description:
plural: Features
singular: Feature
type: feat
bump: Minor
- description:
plural: Bug Fixes
singular: Bug fix
type: fix
bump: Patch
- description:
singular: Performance Improvements
type: perf
bump: Minor
- description:
plural: Improvements
singular: Improvement
type: improvement
bump: Minor
- description:
singular: Reverts
type: revert
- description:
singular: Documentation
changelog: false
type: docs
- description:
plural: Styles
singular: Style
changelog: false
type: style
- description:
singular: Code Refactoring
changelog: false
type: refactor
- description:
plural: Tests
singular: Test
changelog: false
type: test
- description:
singular: Chore
changelog: false
type: chore
- description:
plural: Builds
singular: Build
changelog: false
type: build
- description:
singular: Continuous Integration
changelog: false
type: ci
- description:
plural: Dependencies
singular: Dependency
changelog: true
scope: deps
type: chore
bump: Patch
- description:
plural: Dependencies
singular: Dependency
changelog: true
scope: deps
type: fix
bump: Patch