From aeb6f784e131fda817eadf793e4fdc6cef214736 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Thu, 21 Nov 2024 21:21:30 -0500 Subject: [PATCH] docs: fix link checking? (#2506) --- .github/workflows/deploy_docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index ad973533a..2a3544874 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -88,7 +88,7 @@ jobs: --check-links-ignore "https://(api|web|docs)\.smith\.langchain\.com/.*" \ --check-links-ignore "https://x.com/.*" \ --check-links-ignore "https://github\.com/.*" \ - --check-links-ignore "http://localhost\.com.*" \ # Include ports + --check-links-ignore "http://localhost\.com.*" \ --check-links-ignore "/.*\.(ipynb|html)$" \ --check-links-ignore "https://python\.langchain\.com/.*" \ --check-links-ignore "https://openai\.com/.*" \ @@ -105,7 +105,7 @@ jobs: echo "Running link check on HTML files matching changed notebook files..." poetry run pytest -v \ --check-links-ignore "https://(api|web|docs)\.smith\.langchain\.com/.*" \ - --check-links-ignore "http://localhost\.com.*" \ # Include ports + --check-links-ignore "http://localhost\.com.*" \ --check-links-ignore "https://x.com/.*" \ --check-links-ignore "https://github\.com/.*" \ --check-links-ignore "/.*\.(ipynb|html)$" \