File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -113,18 +113,18 @@ def main():
113113 if len (parts ) < 2 :
114114 continue
115115 message = parts [0 ]
116- author = parts [1 ]
116+ _author = parts [1 ]
117117
118118 # Extract PR number if present
119119 pr_match = re .search (r"\(#(\d+)\)" , message )
120120 if pr_match :
121121 pr_num = pr_match .group (1 )
122122 # Remove the (#num) part from message
123123 clean_message = re .sub (r"\s*\(#\d+\)" , "" , message ).strip ()
124- formatted_line = f"{ clean_message } by @ { author } in #{ pr_num } "
124+ formatted_line = f"{ clean_message } in #{ pr_num } "
125125 formatted_pr_commits .append (formatted_line )
126126 else :
127- formatted_line = f"{ message } by @ { author } "
127+ formatted_line = f"{ message } "
128128 formatted_other_commits .append (formatted_line )
129129
130130 initial_message = f"Release { new_tag } \n \n "
You can’t perform that action at this time.
0 commit comments