Ignore Vimeo 401 'unauthorized' errors (#14980)
This commit is contained in:
parent
5d9046abda
commit
f8d7038fb3
1 changed files with 3 additions and 2 deletions
5
.github/workflows/links.yml
vendored
5
.github/workflows/links.yml
vendored
|
|
@ -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' \
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue