Skip to content

Commit ca57759

Browse files
ci/check-cherry-picks: fix indent of truncation marker
This needs to be indented the same way as the remaining code-block, otherwise the `</details>` is not rendered correctly.
1 parent db1256a commit ca57759

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/check-cherry-picks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ while read -r new_commit_sha ; do
121121
# consider this too unlikely to happen, to deal with explicitly.
122122
max_length=10000
123123
if [ "${#diff}" -gt $max_length ]; then
124-
printf -v diff "%s\n\n[...truncated...]" "$(echo "$diff" | head -c $max_length | head -n-1)"
124+
printf -v diff "%s\n>\n> [...truncated...]" "$(echo "$diff" | head -c $max_length | head -n-1)"
125125
fi
126126
echo "$diff" >> $markdown_file
127127
echo '> ```' >> $markdown_file

0 commit comments

Comments
 (0)