Docs Links Check #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs Links Check | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 12 * * 6" # runs every saturday at 12:00 UTC | |
jobs: | |
docs-links-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@master | |
- name: Check Links 🔎 | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' # only show errors in output. | |
# use-verbose-mode: 'yes' # show detailed HTTP status for checked links. | |
folder-path: 'docs/' # only check the docs/ folder | |
# refer to https://github.com/tcort/markdown-link-check#config-file-format | |
config-file: '.github/workflows/docs.links.check.config.json' | |
file-extension: '.md*' # .md or .mdx |