@@ -25,26 +25,22 @@ 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 operates 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
+ -example
43
36
44
37
# Work that directly implements or supports the implementation of a feature.
45
38
-feat
46
39
47
- # A fix for a RELEASED bug (regression fix) that is intended for patch-release
40
+ # A fix for either a released or unrelesed bug.
41
+ -fix
42
+
43
+ # A fix for a released bug (regression fix) that is intended for patch-release
48
44
# purposes.
49
45
-hotfix
50
46