Skip to content

Commit

Permalink
CI: Add workflow to check for broken links
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
jwagantall committed Dec 17, 2024
1 parent 57a6762 commit 7350216
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 7350216

Please sign in to comment.