@@ -25,26 +25,23 @@ types:
25
25
# A build of any kind.
26
26
-build
27
27
28
- # A RELEASED fix that will NOT be back-ported. The originating issue may have
29
- # been discovered internally or externally to Coder.
30
- -fix
31
-
32
- # Any code task that is ignored for changelog purposes. Examples include
33
- # devbin scripts and internal-only configurations.
28
+ # Any code task that operats outside of CI, docs, or the product. Examples
29
+ # include configurations, linters etc.
34
30
-chore
35
31
36
32
# Any work performed on CI.
37
33
-ci
38
-
39
- # An UNRELEASED correction. For example, features are often built
40
- # incrementally and sometimes introduce minor flaws during a release cycle.
41
- # Corrections address those increments and flaws.
42
- -correct
34
+
35
+ # Any work that improves documentation and examples.
36
+ -docs
43
37
44
38
# Work that directly implements or supports the implementation of a feature.
45
39
-feat
46
40
47
- # A fix for a RELEASED bug (regression fix) that is intended for patch-release
41
+ # A fix for either a released or unrelesed bug.
42
+ -fix
43
+
44
+ # A fix for a released bug (regression fix) that is intended for patch-release
48
45
# purposes.
49
46
-hotfix
50
47