From 25a1f9037447c4fa7d96a78262945f92cd24f1e8 Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Sat, 14 Jan 2023 17:38:07 -0600 Subject: [PATCH] Enable markdown-link-check https://github.com/marketplace/actions/markdown-link-check --- .github/workflows/markdown-links.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/markdown-links.yml diff --git a/.github/workflows/markdown-links.yml b/.github/workflows/markdown-links.yml new file mode 100644 index 0000000..27605fe --- /dev/null +++ b/.github/workflows/markdown-links.yml @@ -0,0 +1,17 @@ +name: Check Markdown links + +on: + push: + branches: + - main + - no-license-comments + pull_request: + schedule: + - cron: '15 0,12 * * *' + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: gaurav-nelson/github-action-markdown-link-check@v1