From 1a287edf7ecd2bf1eeb3bc4d764b845dac45814d Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Wed, 26 Feb 2025 20:53:58 +0100 Subject: [PATCH] chore: Ignore two links for linkcheck I removed those exceptions earlier this week, because I got fooled by my local test output. Those only return 403 in GitHub Actions - it seems like those websites block access from there. --- docs/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 61dcc1871..c15e1f60c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -297,6 +297,9 @@ user_agent = ( ) linkcheck_ignore = [ + # 403 only in CI / GitHub Actions + r"https://www.patreon.com/postgrest", + r"https://blog.frankel.ch/poor-man-api", # Odd SSL error r"https://www.dripdepot.com", # New GitHub UI delays comment load, so anchor fails