From 735021663186dbf6f0c0a84e16b456794ab12e29 Mon Sep 17 00:00:00 2001 From: Jessica Wagantall Date: Mon, 16 Dec 2024 19:29:31 -0800 Subject: [PATCH] CI: Add workflow to check for broken links Spot any broken links from TSC minutes. Some links can be crucial for referecing importan information that needs to be revisited. This workflow can be modified to enable "check-modified-files-only" if the team decides to ignore the current broken links. Signed-off-by: Jessica Wagantall --- .github/workflows/check-links.yml | 15 +++++++++++++++ 1 file changed, 15 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..13120e8 --- /dev/null +++ b/.github/workflows/check-links.yml @@ -0,0 +1,15 @@ +name: Check Markdown links + +on: + pull_request: + paths: + - '**/*.md' + +jobs: + check-links: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + use-quiet-mode: 'yes'