GRM-48: refactor: consolidate CI workflows to eliminate redundant runs

This commit is contained in:
2026-06-22 00:01:58 +00:00
parent 5b4aaffa3b
commit d8d025789b
7 changed files with 154 additions and 167 deletions
+1 -1
View File
@@ -189,7 +189,7 @@ def commit_release_changes(new_version: str) -> bool:
if status.returncode == 0:
click.echo(_("No staged changes — version and changelog already up to date."))
return False
run_cmd(["git", "commit", "--no-verify", "-m", f"release: v{new_version}"])
run_cmd(["git", "commit", "--no-verify", "-m", f"release: v{new_version} [skip ci]"])
return True