Skip to content
Open
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
11 changes: 10 additions & 1 deletion .github/workflows/linkcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,19 @@ 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 three 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.
ignore-patterns: |
https://doi\.org/https://doi\.org/10\.2307/1235116
https://math\.stackexchange\.com/
https://stackoverflow\.com/
https://fred\.stlouisfed\.org
Loading