feat: add markdown link check workflow

main
sudo pacman -Syu 2024-04-15 00:31:38 +07:00
parent ea282febd5
commit bc0300d1f7
1 changed files with 10 additions and 0 deletions

10
.github/workflows/links.yml vendored Normal file
View File

@ -0,0 +1,10 @@
name: Check Markdown links
on:
schedule:
- cron: "0 0 * * *"
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1