Skip to content

Check Markdown links #1235

Check Markdown links

Check Markdown links #1235

Workflow file for this run

name: Check Markdown links
on:
schedule:
- cron: "* */24 * * *"
pull_request:
push:
branches:
- main
- release/**
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- id: changed-files
uses: tj-actions/changed-files@v41
with:
files: |
docs/**/*.md
- uses: gaurav-nelson/github-action-markdown-link-check@1.0.13
if: steps.changed-files.outputs.any_changed == 'true'
with:
folder-path: "docs"