We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d573d0b commit 13ec17fCopy full SHA for 13ec17f
.github/workflows/link-checker.yaml
@@ -6,14 +6,22 @@ on:
6
- '**.md'
7
- 'docs/**'
8
9
+
10
jobs:
11
markdown-link-check:
12
runs-on: ubuntu-latest
13
steps:
14
- uses: actions/checkout@v2
15
- - name: Check all markdown files in root
16
+ - name: Check markdown links in docs
17
uses: gaurav-nelson/github-action-markdown-link-check@v1
18
with:
19
config-file: '.github/workflows/link-checker.config.json'
20
+ folder-path: 'docs/'
21
22
+ - name: Check markdown files in root
23
+ uses: gaurav-nelson/github-action-markdown-link-check@v1
24
+ with:
25
+ config-file: '.github/workflows/link-checker.config.json'
26
+ # ignore subfolders we don't want to check everthing, there is a lot of files from plugins that we don't control
27
+ max-depth: 0
0 commit comments