Skip to content
Merged
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
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,19 @@ markdown-link-check:
-v \
home/repo

# check that all links to opentelemetry.io are canonical (no redirects)
# see https://github.com/open-telemetry/opentelemetry-specification/pull/4554
docker run --rm \
--mount 'type=bind,source=$(PWD),target=/home/repo' \
lycheeverse/lychee:sha-2aa22f8@sha256:2e3786630482c41f9f2dd081e06d7da1c36d66996e8cf6573409b8bc418d48c4 \
--config home/repo/.lychee.toml \
--root-dir /home/repo \
--max-redirects 0 \
--include '^https://opentelemetry.io/.*' \
--exclude '' \
-v \
home/repo

# This target runs markdown-toc on all files that contain
# a comment <!-- tocstop -->.
#
Expand Down
Loading