From c14c978824c87666f192374eaccf9bf12efd8fb9 Mon Sep 17 00:00:00 2001 From: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com> Date: Wed, 18 Dec 2024 16:46:34 -0800 Subject: [PATCH] [Docs] Ignore localhost on main --- .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 1c14f7fbe..f503cd69c 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -89,7 +89,8 @@ jobs: --check-links-ignore "https://x.com/.*" \ --check-links-ignore "https://github\.com/.*" \ --check-links-ignore "http://localhost:8123/.*" \ - --check-links-ignore "http://localhost:2024/.*" \ + --check-links-ignore "http://localhost:2024.*" \ + --check-links-ignore "http://127.0.0.1:.*" \ --check-links-ignore "/.*\.(ipynb|html)$" \ --check-links-ignore "https://python\.langchain\.com/.*" \ --check-links-ignore "https://openai\.com/.*" \