We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d99269 commit f324fdbCopy full SHA for f324fdb
Makefile
@@ -35,6 +35,19 @@ markdown-link-check:
35
-v \
36
home/repo
37
38
+ # check that all links to opentelemetry.io are canonical (no redirects)
39
+ # see https://github.com/open-telemetry/opentelemetry-specification/pull/4554
40
+ docker run --rm \
41
+ --mount 'type=bind,source=$(PWD),target=/home/repo' \
42
+ lycheeverse/lychee:sha-2aa22f8@sha256:2e3786630482c41f9f2dd081e06d7da1c36d66996e8cf6573409b8bc418d48c4 \
43
+ --config home/repo/.lychee.toml \
44
+ --root-dir /home/repo \
45
+ --max-redirects 0 \
46
+ --include '^https://opentelemetry.io/.*' \
47
+ --exclude '' \
48
+ -v \
49
+ home/repo
50
+
51
# This target runs markdown-toc on all files that contain
52
# a comment <!-- tocstop -->.
53
#
0 commit comments