fleet/.github/workflows/docs.yml

16 lines
429 B
YAML
Raw Normal View History

name: Check for bad links in documentation
2020-11-13 02:20:30 +00:00
on: [ pull_request]
2020-11-13 02:20:30 +00:00
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 }}