This is an automated email from the ASF dual-hosted git repository.
membphis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git
The following commit(s) were added to refs/heads/master by this push:
new 1564d4f feat(CI): supoort markdown links checker (#981)
1564d4f is described below
commit 1564d4f51cc1ca5ce376a321e4d2e3fc6f87e958
Author: 琚致远 <[email protected]>
AuthorDate: Thu Dec 10 14:55:14 2020 +0800
feat(CI): supoort markdown links checker (#981)
---
.github/workflows/markdown-link-checker.yml | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/.github/workflows/markdown-link-checker.yml
b/.github/workflows/markdown-link-checker.yml
new file mode 100644
index 0000000..c89a81e
--- /dev/null
+++ b/.github/workflows/markdown-link-checker.yml
@@ -0,0 +1,14 @@
+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'