Skip to content

Commit e766aba

Browse files
committed
HTML Proofer: Also ignore github.com URLs.
1 parent 19dbb00 commit e766aba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,13 @@ jobs:
3636
run: |
3737
# Check all links
3838
# Don't check links to twitter.com because they return 400 all the time
39+
# Also ignore github.com because we have too many and they eventually return 429
3940
bundle exec htmlproofer ./_site/\
4041
--only-4xx\
4142
--ignore-empty-alt=true\
4243
--allow-hash-href=true\
4344
--enforce-https=false\
4445
--ignore-missing-alt=true\
4546
--swap-urls "https\:\/\/scala\.epfl\.ch:"\
46-
--ignore-urls "/twitter.com/,/x.com/"\
47+
--ignore-urls "/twitter.com/,/x.com/,/github.com/"\
4748
--cache '{ "timeframe": { "external": "30d" } }'

0 commit comments

Comments
 (0)