mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-20 21:30: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>
26 lines
641 B
YAML
26 lines
641 B
YAML
name: Markdown Link Checks
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 0"
|
|
|
|
jobs:
|
|
markdown-link-check-periodic:
|
|
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"
|
|
|
|
- name: Raise an Issue to report broken links
|
|
if: ${{ failure() }}
|
|
uses: JasonEtco/create-an-issue@v2
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
filename: .github/ISSUE_TEMPLATE/broken-link.md
|