Skip to content

Commit 824dfbf

Browse files
authored
Merge 7799114 into 99b1c40
2 parents 99b1c40 + 7799114 commit 824dfbf

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/docs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ name: Docs
1919
on:
2020
pull_request:
2121
paths:
22+
- '.github/workflows/docs.yml'
23+
- '**/*.md'
2224
- 'docs/**'
2325

2426
concurrency:
@@ -50,7 +52,9 @@ jobs:
5052
steps:
5153
- uses: actions/checkout@v2
5254
- run: sudo npm install -g markdown-link-check@3.10.0
55+
# NOTE: Change command from `find . -name "*.md"` to `find . -not -path "*/node_modules/*" -not -path "*/.tox/*" -name "*.md"`
56+
# if you want to run check locally
5357
- run: |
54-
for file in $(find ./docs -name "*.md"); do
58+
for file in $(find . -name "*.md"); do
5559
markdown-link-check -c .dlc.json -q "$file"
5660
done

deploy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# DolphinScheduler for Docker and Kubernetes
22

3-
* [Start Up DolphinScheduler with Docker](https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/guide/installation/docker.html)
3+
* [Start Up DolphinScheduler with Docker](https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/guide/start/docker.html)
44
* [Start Up DolphinScheduler with Kubernetes](https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/guide/installation/kubernetes.html)

0 commit comments

Comments
 (0)