We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 659e86b commit 0295f98Copy full SHA for 0295f98
.github/workflows/list-changed-files.yml
@@ -68,7 +68,11 @@ jobs:
68
run: |
69
DIFF_OUTPUT=$(git diff --name-status "$OLD_TAG"..."$NEW_TAG" | grep -E "^($PATTERN)" | cut -c3-)
70
if [ -n "$DIFF_OUTPUT" ]; then
71
- echo "```$DIFF_OUTPUT```" >> "$GITHUB_STEP_SUMMARY"
+ cat << EOF >> "$GITHUB_STEP_SUMMARY"
72
+ \`\`\`
73
+ $DIFF_OUTPUT
74
75
+ EOF
76
else
77
echo "No files $DESCRIPTION found" >> "$GITHUB_STEP_SUMMARY"
78
fi
0 commit comments