From b89414efa4b862d4a7bf6cbf76b4ba0cbc6a2412 Mon Sep 17 00:00:00 2001 From: Ross Patterson Date: Sun, 18 Aug 2024 08:32:39 -0700 Subject: [PATCH] ci(github): Workaround Reddit block on Actions --- docs/conf.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 1f8c9b0a..821e6ad1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -42,7 +42,12 @@ # Tolerate links to source code lines in VCS provider web UIs: "^L[0-9]+", ] -linkcheck_ignore = ["https://liberapay.com/.*"] +linkcheck_ignore = [ + "https://liberapay.com/.*", + # Blocked on GitHub Acgtions: + # 403 Client Error: Blocked for url: ... + "https://www.reddit.com/.*", +] # -- Extension options ------------------------------------------------------- ogp_site_url = 'http://prunerr.readthedocs.io/'