We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45d90bd commit 49039e5Copy full SHA for 49039e5
1 file changed
src/config.py
@@ -14,12 +14,18 @@ class UpdateVersionWith(str, Enum):
14
LATEST_RELEASE_COMMIT_SHA = "release-commit-sha"
15
DEFAULT_BRANCH_COMMIT_SHA = "default-branch-sha"
16
17
+ def __repr__(self):
18
+ return self.value
19
+
20
21
class ReleaseType(str, Enum):
22
MAJOR = "major"
23
MINOR = "minor"
24
PATCH = "patch"
25
26
27
28
29
30
class ActionEnvironment(BaseSettings):
31
repository: str
0 commit comments