Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Stabilize lychee links validation #5668

Merged
merged 1 commit into from
Dec 4, 2024
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/lychee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
id: lychee
uses: lycheeverse/[email protected]
with:
lycheeVersion: nightly # TODO: Change to stable once v0.17.1 is released, the version that includes a retry fix
args: -v -n --config .lychee.toml './*.md' './**/*.md'
fail: true
env:
Expand Down
9 changes: 4 additions & 5 deletions .lychee.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
max-concurrency = 20
accept = [
200,
429,
]
max_concurrency = 20
timeout = 30
max_retires = 5
retry_wait_time = 30
exclude = [
"my.host",
"file://*",
Expand All @@ -24,4 +22,5 @@ exclude = [
"https://self-service.isv.ci", # Failing with timeouts, not stable and still current according to https://github.com/cf-platform-eng/selfservice/blame/main/README.md#L3
"https://github.com/signalfx/splunk-otel-collector/tree/main/internal/exporter/httpsinkexporter", # exporter was deleted
"https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/loggingexporter", # exporter was deleted
"https://github.com/.*/(pull|issues)/[0-9]+", # We have too many PR and issues links in CHANGELOG.md that we allways run out of the rate limit
]
Loading