Skip to content

Commit

Permalink
[temp] dummy body
Browse files Browse the repository at this point in the history
  • Loading branch information
andooown committed Aug 24, 2020
1 parent 179d0c1 commit acc53bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion auto-release-pr/release-pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ def convert_to_body_line(message: str) -> str:

return f'- {number}: {title}'

body_lines = '\n'.join(map(convert_to_body_line, merge_commit_messages))
# body_lines = '\n'.join(map(convert_to_body_line, merge_commit_messages))
body_lines = '\n'.join([f'- {m}' for m in commit_messages])
if len(body_lines) > 0:
return template.format(summary=body_lines)
else:
Expand Down

0 comments on commit acc53bc

Please sign in to comment.