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 98d072a commit d9b5677Copy full SHA for d9b5677
markdown-link-check/action.yml
@@ -63,18 +63,15 @@ runs:
63
has_errors=1
64
fi
65
66
- done <<< "$MLC_OUTPUT"
+ done <<< "$MLC_OUTPUT" # This is the output of the markdown link check action
67
68
# Output final conclusion
69
if [ $has_errors -eq 0 ]; then
70
- echo "✅ All links are valid"
+ echo "=========== All links are valid ==========="
71
exit 0
72
73
74
- echo "❌ Found broken links"
75
- echo
76
- echo "===== DETAILS ====="
77
-
+ echo "=========== Found broken links ==========="
78
# Output error details
79
for i in "${!files[@]}"; do
80
filename="${files[$i]}"
0 commit comments