-
Notifications
You must be signed in to change notification settings - Fork 3
/
CCVARN.yml
83 lines (83 loc) · 2 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
79
80
81
82
83
# 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: 0.4.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
scope:
type: feat
bump: Minor
- description:
plural: Bug Fixes
singular: Bug fix
scope:
type: fix
bump: Patch
- description:
singular: Performance Improvements
scope:
type: perf
bump: Minor
- description:
plural: Improvements
singular: Improvement
scope:
type: improvement
bump: Minor
- description:
singular: Reverts
scope:
type: revert
- description:
singular: Documentation
changelog: false
scope:
type: docs
- description:
plural: Styles
singular: Style
changelog: false
scope:
type: style
- description:
singular: Code Refactoring
changelog: false
scope:
type: refactor
- description:
plural: Tests
singular: Test
changelog: false
scope:
type: test
- description:
singular: Chore
changelog: false
scope:
type: chore
- description:
plural: Builds
singular: Build
changelog: false
scope:
type: build
- description:
singular: Continuous Integration
changelog: false
scope:
type: ci
- description:
plural: Dependencies
singular: Dependency
changelog: true
scope: deps
type: chore
bump: Patch