We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f28df30 commit 5084845Copy full SHA for 5084845
kustdiff
@@ -83,13 +83,12 @@ function main {
83
if [[ -z "$diff" ]]; then
84
output="No differences found between $INPUT_BASE_REF and $INPUT_HEAD_REF"
85
else
86
- # Format the diff output cleanly
87
- output="Comparing changes between $INPUT_BASE_REF and $INPUT_HEAD_REF\n\n$diff"
+ # Just pass through the raw git diff output
+ output="$diff"
88
fi
89
90
escaped_output=${output//$'\n'/'%0A'}
91
92
- # If escaped output is longer than 65000 characters return "output to large to print as a github comment"
93
if [ ${#escaped_output} -gt 65000 ]; then
94
escaped_output="Output is greater than 65000 characters, and therefore too large to print as a github comment."
95
0 commit comments