Skip to content

Commit 8dc9ce3

Browse files
committed
fix(core): Improve commit success reporting
This change updates the reporting of successful commit workflows. It now explicitly warns when not all commits in a workflow succeed, clarifying the status for users and improving diagnostics. Affected files: - M smart_git_commit/smart_git_commit.py
1 parent 38775a6 commit 8dc9ce3

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

smart_git_commit/smart_git_commit.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2362,14 +2362,6 @@ def execute_commits(self, interactive: bool = True) -> None:
23622362
elif successful_commits < total_commits:
23632363
# Some commits were successful but not all
23642364
print(f"\n{Colors.YELLOW}⚠️ Warning: Only {successful_commits} out of {total_commits} commits were successful.{Colors.RESET}")
2365-
2366-
# Thank you message with donation links
2367-
print("\n" + "-" * 60)
2368-
print(f"{Colors.BOLD}Thank you for using Smart Git Commit! If this tool saved you time,{Colors.RESET}")
2369-
print("please consider supporting development:")
2370-
print(f"{Colors.RED}❤️ https://github.com/sponsors/CripterHack{Colors.RESET}")
2371-
print(f"{Colors.BLUE}💰 http://paypal.com/paypalme/cripterhack{Colors.RESET}")
2372-
print("-" * 60 + "\n")
23732365

23742366
if auto_skip_hooks:
23752367
print(f"{Colors.GREEN}{successful_commits}/{total_commits} commits completed successfully{Colors.RESET}")

0 commit comments

Comments
 (0)