mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-20 20:20:35 +00:00
Adds support for check-modified-files-only config, which currently isn't honored and throws a warning. Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
17 lines
402 B
YAML
17 lines
402 B
YAML
name: Markdown Link Checks
|
|
on: pull_request
|
|
|
|
jobs:
|
|
markdown-link-check:
|
|
runs-on: ubuntu-latest
|
|
name: Markdown Link Checks
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Run markdown-link-check
|
|
uses: gaurav-nelson/github-action-markdown-link-check@v1
|
|
with:
|
|
config-file: ".markdownlinkcheck.json"
|
|
check-modified-files-only: "yes"
|