Skip to content

Commit e2909de

Browse files
authored
Merge branch 'main' into agent-tracer
2 parents 06be831 + f26e401 commit e2909de

File tree

3 files changed

+21
-8
lines changed

3 files changed

+21
-8
lines changed

.github/workflows/reusable-markdown-link-check.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,7 @@ jobs:
1414

1515
- uses: lycheeverse/lychee-action@82202e5e9c2f4ef1a55a3d02563e1cb6041e5332 # v2.4.1
1616
with:
17-
# excluding links to pull requests and issues is done for performance
18-
# stackexchange link fails with 403 when accessed by lychee
1917
args: >
20-
--include-fragments
21-
--exclude "^https://github.com/open-telemetry/opentelemetry-java-instrumentation/(issues|pull)/\\d+$"
22-
--exclude "^http://code.google.com/p/concurrentlinkedhashmap$"
23-
--exclude "^https://softwareengineering.stackexchange.com/questions/29727"
24-
--max-retries 6
25-
--max-concurrency 4
18+
--config ./lychee.toml
2619
--github-token ${{ github.token }}
2720
.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ hs_err_pid*
5858
replay_pid*
5959
.attach_pid*
6060
.telemetry*
61+
.lycheecache
6162

6263
!java-agent/benchmark/releases/*.jar
6364

lychee.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
max_retries = 6
2+
max_concurrency = 4
3+
4+
# Stealth
5+
user_agent = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:128.0) Gecko/20100101 Firefox/128.0"
6+
7+
# Check fragments in links
8+
include_fragments = true
9+
10+
# excluding links to pull requests and issues is done for performance
11+
# stackexchange link fails with 403 when accessed by lychee
12+
exclude = [
13+
'^https://github.com/open-telemetry/opentelemetry-java-instrumentation/(issues|pull)/\d+$',
14+
'^http://code.google.com/p/concurrentlinkedhashmap$',
15+
'^https://softwareengineering.stackexchange.com/questions/29727.*',
16+
'^https://central.sonatype.com/service/rest/repository/browse/maven-snapshots/io/opentelemetry/$',
17+
]
18+
19+

0 commit comments

Comments
 (0)