From 72e58377642ecf23ec254b7c349e10490a0d4218 Mon Sep 17 00:00:00 2001 From: Sebastian Raschka Date: Thu, 11 Apr 2024 13:59:04 -0400 Subject: [PATCH] Update check-links.yml --- .github/workflows/check-links.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml index 3878ad724d..0edf0589cc 100644 --- a/.github/workflows/check-links.yml +++ b/.github/workflows/check-links.yml @@ -26,10 +26,13 @@ jobs: "ignorePatterns": [ { "pattern": "^#" + }, + { + "pattern": "^https://falconllm.tii.ae" } ] }' > $GITHUB_WORKSPACE/md_checker_config.json - name: Find Markdown Files and Check Links run: | - find . -name \*.md -print0 | xargs -0 -n1 markdown-link-check -c $GITHUB_WORKSPACE/md_checker_config.json --alive https://falconllm.tii.ae + find . -name \*.md -print0 | xargs -0 -n1 markdown-link-check -c $GITHUB_WORKSPACE/md_checker_config.json