From 8055943746f392eb34c94d8725172f20f4dc9faf Mon Sep 17 00:00:00 2001 From: weichweich Date: Thu, 16 Nov 2023 10:37:29 +0100 Subject: [PATCH] ci: check links --- .github/workflows/check-links.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/check-links.yml diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml new file mode 100644 index 0000000..a4df6f9 --- /dev/null +++ b/.github/workflows/check-links.yml @@ -0,0 +1,13 @@ +name: "check-links" + +on: + push: + schedule: + - cron: "13 9 * * 1" + +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check@v1