2023-01-06 08:30:13 +00:00
|
|
|
name: Check Markdown links
|
|
|
|
# https://github.com/gaurav-nelson/github-action-markdown-link-check
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master, "release/*"]
|
|
|
|
pull_request:
|
|
|
|
branches: [master, "release/*"]
|
|
|
|
types: [opened, reopened, ready_for_review, synchronize]
|
|
|
|
paths:
|
2023-03-20 18:19:02 +00:00
|
|
|
- ".github/workflows/ci-check-md-links.yml"
|
2023-03-01 18:19:46 +00:00
|
|
|
- ".github/workflows/markdown.links.config.json"
|
2023-01-06 08:30:13 +00:00
|
|
|
- "**/*.md"
|
|
|
|
|
|
|
|
jobs:
|
2023-03-17 10:59:12 +00:00
|
|
|
check-md-links:
|
2024-10-21 14:15:01 +00:00
|
|
|
uses: Lightning-AI/utilities/.github/workflows/check-md-links.yml@v0.11.8
|
2023-03-17 10:59:12 +00:00
|
|
|
with:
|
2023-09-22 10:51:44 +00:00
|
|
|
config-file: ".github/markdown-links-config.json"
|
2024-03-15 15:19:28 +00:00
|
|
|
base-branch: "master"
|