From dcc9ac44768f28ddd3d0f1b9cee25892e6deab97 Mon Sep 17 00:00:00 2001 From: Mika Vilpas Date: Mon, 27 May 2024 20:07:59 +0300 Subject: [PATCH] ci: report broken links in markdown (md) files Can help keep the documentation up to date --- .github/workflows/linkspector.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/linkspector.yml diff --git a/.github/workflows/linkspector.yml b/.github/workflows/linkspector.yml new file mode 100644 index 00000000..c297adbb --- /dev/null +++ b/.github/workflows/linkspector.yml @@ -0,0 +1,14 @@ +name: Linkspector +on: [pull_request] +jobs: + check-links: + name: runner / linkspector + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Run linkspector + uses: umbrelladocs/action-linkspector@v1 + with: + github_token: ${{ secrets.github_token }} + reporter: github-pr-review + fail_on_error: true