mirror of
https://github.com/fleetdm/fleet
synced 2026-05-08 17:50:52 +00:00
15 lines
429 B
YAML
15 lines
429 B
YAML
name: Check for bad links in documentation
|
|
|
|
on: [ 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
|
|
base-branch: ${{ github.base_ref }}
|