From b527b785fdbc1eda34d6ac5c2c5d4337f97c04b7 Mon Sep 17 00:00:00 2001 From: Eugene Yurtsev Date: Thu, 31 Oct 2024 00:10:10 -0400 Subject: [PATCH] disable more link checking (#2265) --- .github/workflows/deploy_docs.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index 9b714a5dc..426cdaa3c 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -82,7 +82,7 @@ jobs: --check-links-ignore "https://github\.com/.*" \ --check-links-ignore "/.*\.(ipynb|html)$" \ --check-links-ignore "https://python\.langchain\.com/.*" \ - --check-links-ignore "https://www.\.langchain\.com/langgraph-platform-pricing.*" \ + --check-links-ignore "https://www.langchain\.com/.*" \ --check-links-ignore "https://openai.com/index/memory-and-new-controls-for-chatgpt/" \ --check-links $(find docs/site -name "index.html" | grep -v 'storm/index.html') @@ -97,6 +97,7 @@ jobs: poetry run pytest -v \ --check-links-ignore "https://(api|web|docs)\.smith\.langchain\.com/.*" \ --check-links-ignore "https://x.com/.*" \ + --check-links-ignore "https://www\.langchain\.com/.*" \ --check-links-ignore "https://github\.com/.*" \ --check-links-ignore "/.*\.(ipynb|html)$" \ --check-links ${CHANGED_FILES} \