Skip to content

Commit 310310c

Browse files
committed
LinkChecker: exclude known blocked/removed hosts (SIAM epubs, dx.doi.org, goo.gl, abelsiqueira.github.io, gerad.ca) to avoid noisy failures
1 parent 8973c8d commit 310310c

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/LinkChecker.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,18 @@ jobs:
1717
- name: Link Checker
1818
uses: lycheeverse/[email protected]
1919
with:
20-
args: --verbose --no-progress **/*.html --exclude=".+gstatic.+" --exclude="https://doi.org.+" --exclude="https://github.com/JuliaSmoothOptimizers/PACKAGE.jl"
20+
# Exclude known hosts that block crawlers or are served behind paywalls
21+
args: >-
22+
--verbose --no-progress **/*.html
23+
--exclude=".+gstatic.+"
24+
--exclude="https://doi.org.+"
25+
--exclude="https://epubs.siam.org.+"
26+
--exclude="https?://dx.doi.org.+"
27+
--exclude="https?://doi.org.+"
28+
--exclude="https?://goo.gl.+"
29+
--exclude="https?://abelsiqueira.github.io.+"
30+
--exclude="https?://(www\.)?gerad.ca.+"
31+
--exclude="https://github.com/JuliaSmoothOptimizers/PACKAGE.jl"
2132
env:
2233
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
2334

0 commit comments

Comments
 (0)