Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .github/workflows/reusable-markdown-link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 14 additions & 0 deletions lychee.toml
Original file line number Diff line number Diff line change
@@ -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+$"
]


Loading