This commit is contained in:
jason plumb 2025-07-27 03:34:06 -07:00 committed by GitHub
commit b0cdabeef4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 15 additions and 6 deletions

View File

@ -14,11 +14,6 @@ jobs:
- uses: lycheeverse/lychee-action@82202e5e9c2f4ef1a55a3d02563e1cb6041e5332 # v2.4.1
with:
# excluding links to pull requests and issues is done for performance
args: >
--include-fragments
--exclude "^https://github.com/open-telemetry/opentelemetry-java/(issues|pull)/\\d+$"
--max-retries 6
--retry-wait-time 10
--max-concurrency 1
--config ./lychee.toml
.

14
lychee.toml Normal file
View File

@ -0,0 +1,14 @@
timeout = 30
retry_wait_time = 10
max_retries = 6
max_concurrency = 1
# Check fragments in links
include_fragments = true
# excluding links to pull requests and issues is done for performance
exclude = [
"^https://github.com/open-telemetry/opentelemetry-java/(issues|pull)/\\d+$"
]