Skip to content

Commit

Permalink
Add new workflow to check links in Markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
AntObi committed Dec 2, 2024
1 parent 5e77193 commit 0594cc4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/check-live-links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Check Markdown links

on:
push:
branches:
- master
schedule:
# Every Monday at 00:00 UTC
- cron: "0 0 * * 1"

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1

0 comments on commit 0594cc4

Please sign in to comment.