summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/linkcheck.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/linkcheck.yml b/.github/workflows/linkcheck.yml
new file mode 100644
index 000000000..b37cd8106
--- /dev/null
+++ b/.github/workflows/linkcheck.yml
@@ -0,0 +1,23 @@
+# Docs: https://github.com/marketplace/actions/markdown-link-check
+
+name: Markdown links
+
+on:
+ # Trigger the workflow on push or pull requests, but only for the
+ # master branch
+ push:
+ branches:
+ - master
+ - '*/ci'
+ pull_request:
+ branches:
+ - master
+
+jobs:
+ check:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@master
+ - uses: gaurav-nelson/github-action-markdown-link-check@v1
+ with:
+ use-quiet-mode: 'yes'