We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f5c39d commit f28df30Copy full SHA for f28df30
kustdiff
@@ -83,7 +83,8 @@ function main {
83
if [[ -z "$diff" ]]; then
84
output="No differences found between $INPUT_BASE_REF and $INPUT_HEAD_REF"
85
else
86
- output=$(printf "%s" "$diff")
+ # Format the diff output cleanly
87
+ output="Comparing changes between $INPUT_BASE_REF and $INPUT_HEAD_REF\n\n$diff"
88
fi
89
90
escaped_output=${output//$'\n'/'%0A'}
0 commit comments