Skip to content

Commit 5855477

Browse files
committed
chore: also exclude changelog file from link checker
1 parent 69efc79 commit 5855477

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,6 @@ jobs:
3131
run: yarn
3232
- name: Run markdown-link-check on MD files
3333
run:
34-
find . -name "*.md" | grep -v node_modules | xargs -n 1 yarn
35-
markdown-link-check -c markdown_link_check_config.json -q
34+
find . -name "*.md" | grep -v node_modules | grep -v CHANGELOG.md |
35+
xargs -n 1 yarn markdown-link-check -c markdown_link_check_config.json
36+
-q

0 commit comments

Comments
 (0)