From 688de89864af02d51fb3d4484f375031a4d6cc95 Mon Sep 17 00:00:00 2001 From: Lance Martin <122662504+rlancemartin@users.noreply.github.com> Date: Fri, 25 Oct 2024 16:34:08 -0700 Subject: [PATCH] Fix link that is causing docs build to fail (#2194) --- .github/workflows/deploy_docs.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index 16a923d36..1852d9896 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -82,7 +82,9 @@ jobs: --check-links-ignore "https://github\.com/.*" \ --check-links-ignore "/.*\.(ipynb|html)$" \ --check-links-ignore "https://python\.langchain\.com/.*" \ - --check-links $(find docs/site -name "index.html" | grep -v 'storm/index.html') + --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') + else echo "Fetching changes from origin/main..." git fetch origin main