Skip to content

Commit

Permalink
[CI] Do not validate pull request links (#5668)
Browse files Browse the repository at this point in the history
There are too many of them so we always run into rate limiting
  • Loading branch information
dmitryax authored Dec 4, 2024
1 parent 9007c1e commit 3f739af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
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
]

0 comments on commit 3f739af

Please sign in to comment.