2021-05-20 08:22:42 +00:00
|
|
|
name: Check for bad links in documentation
|
2020-11-13 02:20:30 +00:00
|
|
|
|
2021-06-07 02:18:28 +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
|
2020-11-13 03:06:06 +00:00
|
|
|
with:
|
2021-05-26 15:07:29 +00:00
|
|
|
check-modified-files-only: 'yes'
|
2020-11-13 03:06:06 +00:00
|
|
|
use-quiet-mode: 'yes'
|
|
|
|
config-file: .github/workflows/markdown-link-check-config.json
|
2021-06-07 02:18:28 +00:00
|
|
|
base-branch: ${{ github.base_ref }}
|