Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Render .chloggen changelog entries
run: make chlog-preview > changelog_preview.md
- name: Install markdown-link-check
run: npm install -g markdown-link-check
run: npm install
- name: Run markdown-link-check
run: |
markdown-link-check \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-links.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: check-links
on:
push:
branches: [ main ]
branches: [main]
pull_request:

concurrency:
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
fetch-depth: 0

- name: Install markdown-link-check
run: npm install -g [email protected]
run: npm install

- name: Run markdown-link-check
run: |
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,8 @@ benchmarks.txt

# golang
go.work*

# npm (used for markdown-link-check)
node_modules/*
package-lock.json

2 changes: 1 addition & 1 deletion exporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ traces, metrics and logs pipelines (sorted alphabetically):
- [OTLP HTTP](otlphttpexporter/README.md)

The [contrib
repository](https://github.com/open-telemetry/opentelemetry-collector-contrib)
repository](https://github.com/open-telemetry/opentelemetry-collector-contrib)
has more exporters available in its builds.

## Configuring Exporters
Expand Down
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"devDependencies": {
"markdown-link-check": "^3.11.2"
}
}