mirror of
https://github.com/redhat-actions/buildah-build.git
synced 2025-04-20 09:01:23 +00:00
Add link checker workflow
Signed-off-by: divyansh42 <diagrawa@redhat.com>
This commit is contained in:
parent
7e9576291e
commit
00a1d9a1cb
3 changed files with 18 additions and 0 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…
Reference in a new issue