Ignore Vimeo 401 'unauthorized' errors (#14980)

This commit is contained in:
Glenn Jocher 2024-08-06 11:23:00 +02:00 committed by GitHub
parent 5d9046abda
commit f8d7038fb3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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