mirror of
https://github.com/redhat-actions/push-to-registry.git
synced 2025-02-23 02:21:22 +01:00
18 lines
347 B
YAML
18 lines
347 B
YAML
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
|