Skip to content

Commit f2b42fd

Browse files
committed
Make sure build info works properly for messages with more than one line
Test on this commit
1 parent 18ff4a3 commit f2b42fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tagging/manifests/build_info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ def markdown_piece(config: BuildInfoConfig) -> MarkdownPiece:
5353
- Git commit message:
5454
5555
```text
56-
{commit_message}
56+
{{message}}
5757
```"""
58-
)
58+
).format(message=commit_message)
5959

6060
return MarkdownPiece(title="## Build Info", sections=[build_info])

0 commit comments

Comments
 (0)