mirror of
https://github.com/redhat-actions/push-to-registry.git
synced 2025-04-29 18:19:53 +02:00
Add Link checker workflow
Signed-off-by: divyansh42 <diagrawa@redhat.com>
This commit is contained in:
parent
0ab92f3d53
commit
f52484f302
2 changed files with 19 additions and 12 deletions
18
.github/workflows/link_check.yml
vendored
Normal file
18
.github/workflows/link_check.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Link checker
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- '**.md'
|
||||
pull_request:
|
||||
paths:
|
||||
-'**.md'
|
||||
|
||||
jobs:
|
||||
markdown-link-check:
|
||||
name: Check links in markdown
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
||||
with:
|
||||
use-verbose-mode: true
|
Loading…
Add table
Add a link
Reference in a new issue