Skip to content

Commit 99c2727

Browse files
authored
Skip link-check on "SECURITY.md"
1 parent c63b891 commit 99c2727

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/markdown-ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,6 @@ jobs:
2323
- uses: actions/checkout@v2
2424
- run: |
2525
npm install -g [email protected]
26-
git ls-files -z '*.md' | xargs -0 -n1 markdown-link-check --config .markdownlinkcheck.jsonc
26+
git ls-files '*.md' \
27+
| grep -vE '^SECURITY\.md$' \
28+
| xargs -n1 markdown-link-check --config .markdownlinkcheck.jsonc

0 commit comments

Comments
 (0)