Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .github/workflows/linkcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,25 @@ jobs:
mkdir -p _site
curl -fsSL "${{ steps.release.outputs.asset-url }}" | tar -xzf - -C _site
- name: AI-Powered Link Checker
uses: QuantEcon/action-link-checker@main
uses: QuantEcon/action-link-checker@v1
with:
html-path: '_site'
fail-on-broken: 'false'
silent-codes: '403,503'
ai-suggestions: 'true'
create-issue: 'true'
# Known false positives. The first five mirror the linkcheck_ignore
# list in lectures/_config.yml, which Sphinx reads and this checker
# cannot see; keep the two in step. FRED throttles datacenter IP
# ranges, so it times out from a runner while serving readers fine.
#
# Deliberately NOT listed: the quantecon.org and ideas.repec.org
# links currently reported are real 404s and want fixing in the
# source, not suppressing here.
ignore-patterns: |
https://doi\.org/10\.3982/ECTA8070
https://doi\.org/10\.1086/261749
https://doi\.org/10\.1086/262078
https://keras\.io/
https://data\.oecd\.org/
https://fred\.stlouisfed\.org
Comment thread
mmcky marked this conversation as resolved.
Loading