We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2235be commit 1646b1dCopy full SHA for 1646b1d
commitizen/exceptions.py
@@ -24,6 +24,7 @@ class ExitCode(enum.IntEnum):
24
CURRENT_VERSION_NOT_FOUND = 17
25
INVALID_COMMAND_ARGUMENT = 18
26
INVALID_CONFIGURATION = 19
27
+ NO_INCREMENT = 20
28
29
30
class CommitizenException(Exception):
@@ -55,7 +56,7 @@ class DryRunExit(ExpectedExit):
55
56
57
58
class NoneIncrementExit(CommitizenException):
- exit_code = ExitCode.NO_COMMITS_FOUND
59
+ exit_code = ExitCode.NO_INCREMENT
60
61
62
class NoCommitizenFoundException(CommitizenException):
0 commit comments