feat: check markdown links
https://github.com/marketplace/actions/markdown-link-check
This commit is contained in:
parent
6d47ef2ee3
commit
d21e633669
1 changed files with 14 additions and 0 deletions
14
.github/workflows/check-markdown-links.yml
vendored
Normal file
14
.github/workflows/check-markdown-links.yml
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
name: Check Markdown links
|
||||
|
||||
on:
|
||||
push:
|
||||
schedule:
|
||||
- cron: "0 0 * * *"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
markdown-link-check:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
||||
Loading…
Reference in a new issue