From 96b4ea70e7dbde5b4ae26ce629129abf6bfa1d68 Mon Sep 17 00:00:00 2001 From: Charlie Truong Date: Sat, 3 May 2025 15:15:32 -0500 Subject: [PATCH] Skip link check on github links Signed-off-by: Charlie Truong --- docs/source/conf.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index be0f9f933851..b632ecf77a9f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -188,6 +188,14 @@ # The name of the Pygments (syntax highlighting) style to use. pygments_style = "default" +# Ignore Github links and downloading a large file +# Github links are now getting rate limited from the Github Actions +linkcheck_ignore = [ + "https://zenodo.org/record/5525342/files/thorsten-neutral_v03.tgz?download=1", + ".*github\\.com.*", + ".*githubusercontent\\.com.*", +] + ### Previous NeMo theme # # NVIDIA theme settings. # html_theme = 'nvidia_theme'