We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ea5557 commit dee36b9Copy full SHA for dee36b9
.github/workflows/whitespace.yml
@@ -60,6 +60,9 @@ jobs:
60
done <<< "$(git diff --check $base_commit ${{ github.sha }} | grep '^-[^-]')"
61
62
if [ -n "${log}" ]; then
63
- echo -e "Whitespace issues found in the following file(s) and line number(s):\n${log}" >> $GITHUB_OUTPUT
+ delimiter=$(openssl rand -hex 8)
64
+ echo "text<<${delimiter}" >> $GITHUB_OUTPUT
65
+ echo -e "${log}" >> $GITHUB_OUTPUT
66
+ echo "${delimiter}" >> $GITHUB_OUTPUT
67
exit 2
68
fi
0 commit comments