mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
0917ed0dce
- Add a "Fleet tier" and "User role" to specify which tier of Fleet and which role the individual reporting the bug is assigned - Edit Markdown Link Check GitHub action to run against the `main` branch
16 lines
430 B
YAML
16 lines
430 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"
|
|
base-branch: main
|
|
config-file: .github/workflows/markdown-link-check-config.json
|