Skip to content

Commit

Permalink
check for dead links
Browse files Browse the repository at this point in the history
  • Loading branch information
terkelg authored Feb 17, 2024
1 parent 54104c7 commit 42db168
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Markdown Links Check

# runs every monday at 9 am
on:
push:
branches:
- link-checker
schedule:
- cron: "0 9 * * *"

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'

0 comments on commit 42db168

Please sign in to comment.