From b1517124d9f0870590f35f599170942bcd9ec79d Mon Sep 17 00:00:00 2001 From: Khushalsarode Date: Tue, 29 Oct 2024 03:27:17 +0530 Subject: [PATCH] adding markdownflow to check links final adjusment and fixing! --- .github/workflows/markdown_files_link_check.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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