Skip to content

Check Markdown links #92

Check Markdown links

Check Markdown links #92

name: Check Markdown links
on:
schedule:
# Tuesdays at 9AM PST. GitHub Actions run in UTC.
- cron: '0 16 * * 2'
permissions:
contents: read
jobs:
markdown-link-check:
runs-on: ubuntu-latest
# Only run link checks in the main repo and not forks. The intent
# is a low volume reminder to update stale links.
if: github.repository == 'intel/perfmon'
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: gaurav-nelson/github-action-markdown-link-check@d53a906aa6b22b8979d33bc86170567e619495ec # 1.0.15
with:
use-verbose-mode: 'yes'
config-file: '.github/workflows/mlc_config.json'