mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
15 lines
436 B
YAML
15 lines
436 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@9710f0fec812ce0a3b98bef4c9d842fc1f39d976 # v1.0.13
|
|
with:
|
|
use-quiet-mode: 'yes'
|
|
config-file: .github/workflows/markdown-link-check-config.json
|
|
base-branch: ${{ github.base_ref }}
|