mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-14 17:01:20 +08:00
81bcf61d62
* Create markdown-link-checker.yml * Update markdown-link-checker.yml Now we have all broken links, let's update this CI to only check modified files.
15 lines
319 B
YAML
15 lines
319 B
YAML
name: Check Markdown links
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
markdown-link-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
|
with:
|
|
use-quiet-mode: 'yes'
|
|
use-verbose-mode: 'yes'
|
|
check-modified-files-only: 'yes'
|