mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 14:58:33 +00:00
- Set `check-modified-files-only` to `'yes'` - This is so we only check modified markdown files instead of checking all markdown files.
14 lines
390 B
YAML
14 lines
390 B
YAML
name: Check for bad links in documentation
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
markdown-link-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
|
with:
|
|
check-modified-files-only: 'yes'
|
|
use-quiet-mode: 'yes'
|
|
config-file: .github/workflows/markdown-link-check-config.json
|