Skip to content

Commit 0504013

Browse files
authored
Fixes a tiny bug where non-bot commits would return the old format of version for the CHANGELOG bump (#52)
fix
1 parent 29ff05e commit 0504013

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

og/bump/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ runs:
105105
logger.warn(
106106
"Detected non bot commits to the version file, skipping version bump."
107107
)
108-
return f"{leading_v}{file_ver}"
108+
return str(file_ver)
109109
110110
logger.info(f"{file_ver=} {base_branch_ver=}")
111111

0 commit comments

Comments
 (0)