From e86cbaa686147efce3341c53d43a3dfa130a931f Mon Sep 17 00:00:00 2001 From: Khushalsarode Date: Tue, 29 Oct 2024 03:11:46 +0530 Subject: [PATCH] adding markdownflow to check links 2 --- .github/workflows/markdown_files_link_check.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/markdown_files_link_check.yaml b/.github/workflows/markdown_files_link_check.yaml index 06500248..8645a934 100644 --- a/.github/workflows/markdown_files_link_check.yaml +++ b/.github/workflows/markdown_files_link_check.yaml @@ -29,14 +29,14 @@ jobs: - name: Verify config file exists run: | - ls -la .markdown-link-check.json - cat .markdown-link-check.json + ls -la .github/workflows/.markdown-link-check.json + cat .github/workflows/.markdown-link-check.json - # Find and check all Markdown files, using the config file + # Check links in all Markdown files - name: Check links in Markdown files run: | # Find all .md files and check their links find . -name "*.md" | while read file; do echo "Checking $file" - markdown-link-check "$file" -c .markdown-link-check.json -q || echo "$file contains broken links" - done + markdown-link-check "$file" -c .github/workflows/.markdown-link-check.json -q || echo "$file contains broken links" + done \ No newline at end of file