diff --git a/.github/workflows/markdown_files_link_check.yaml b/.github/workflows/markdown_files_link_check.yaml index 2500ed9f..9f820537 100644 --- a/.github/workflows/markdown_files_link_check.yaml +++ b/.github/workflows/markdown_files_link_check.yaml @@ -37,14 +37,12 @@ jobs: run: | # Find all .md files and check their links find . -name "*.md" | while read file; do + echo ------------------------------------- if [ markdown-link-check "$file" -c .github/workflows/.markdown-link-check.json -q ]; then - echo "Checking $file" - echo ------------------------------------- + echo "Checking $file" echo "$file contains broken links" - echo ------------------------------------- else - echo ------------------------------------- echo "$file contains no broken links" - echo ------------------------------------- fi + echo ------------------------------------- done \ No newline at end of file