Ignore the Open Collective URL in the docs linkcheck - #628
Open
promptless-for-oss wants to merge 1 commit into
Open
Ignore the Open Collective URL in the docs linkcheck#628promptless-for-oss wants to merge 1 commit into
promptless-for-oss wants to merge 1 commit into
Conversation
The linkcheck bot receives HTTP 403 (Forbidden) from https://opencollective.com/mautic even though the page is live and valid. This broken result fails 'make checklinks' for every open docs PR against 7.2. Add the URL to linkcheck_ignore, matching the existing pattern for GitHub anchor URLs.
promptless-for-oss
requested review from
adiati98 and
favour-chibueze
and removed request for
a team
August 21, 2026 08:09
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Open in Promptless
The
make checklinksCI step (the "Check links" job) fails whenever it hitshttps://opencollective.com/mautic, which returnsHTTP 403 (Forbidden)to the linkcheck bot even though the page is live and valid — it's Mautic's real Open Collective profile, linked fromdocs/index.rstviadocs/links/mautic_open_collective.py. Because Sphinx linkcheck builds the whole documentation set, this one broken result fails the check on every open docs pull request against7.2, not just the PR that happened to surface it.This adds
https://opencollective.com/mautictolinkcheck_ignoreindocs/conf.py, alongside the existing GitHub-anchor exemption and with a comment noting the reason. Configuration-only change; no documentation prose is affected.Trigger Events