Ignore Vimeo 401 'unauthorized' errors (#14980)

pull/14970/head^2
Glenn Jocher 6 months ago committed by GitHub
parent 5d9046abda
commit f8d7038fb3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      .github/workflows/links.yml

@ -1,6 +1,7 @@
# Ultralytics YOLO 🚀, AGPL-3.0 license
# Continuous Integration (CI) GitHub Actions tests broken link checker using https://github.com/lycheeverse/lychee
# Ignores the following status codes to reduce false positives:
# - 401(Vimeo, 'unauthorized')
# - 403(OpenVINO, 'forbidden')
# - 429(Instagram, 'too many requests')
# - 500(Zenodo, 'cached')
@ -38,7 +39,7 @@ jobs:
--scheme https \
--timeout 60 \
--insecure \
--accept 403,429,500,502,999 \
--accept 401,403,429,500,502,999 \
--exclude-all-private \
--exclude 'https?://(www\.)?(linkedin\.com|twitter\.com|instagram\.com|kaggle\.com|fonts\.gstatic\.com|url\.com)' \
--exclude-path docs/zh \
@ -68,7 +69,7 @@ jobs:
--scheme https \
--timeout 60 \
--insecure \
--accept 429,999 \
--accept 401,403,429,500,502,999 \
--exclude-all-private \
--exclude 'https?://(www\.)?(linkedin\.com|twitter\.com|instagram\.com|kaggle\.com|fonts\.gstatic\.com|url\.com)' \
--exclude-path '**/ci.yaml' \

Loading…
Cancel
Save