github-action-markdown-link-check

Check all links in markdown files if they are alive or dead. 🔗✔️

MIT License

Stars
407
Committers
27

Bot releases are visible (Hide)

github-action-markdown-link-check - v0.2.0

Published by gaurav-nelson about 5 years ago

GitHub Action - Markdown link check 🔗✔️

This GitHub action checks all Markdown files in your repository for broken links. (Uses tcort/markdown-link-check)

How to use

  1. Create a new file in your repository .github/workflows/action.yml.

  2. Copy-paste the folloing workflow in your action.yml file:

    name: Check Markdown links
    
    on: push
    
    jobs:
      markdown-link-check:
        runs-on: ubuntu-latest
        steps:
        - uses: actions/checkout@master
          with:
            fetch-depth: 1
        - uses: gaurav-nelson/[email protected]
    
github-action-markdown-link-check - Release version 0.1.0

Published by gaurav-nelson over 5 years ago

GitHub Action - Markdown link check 🔗✔️

This GitHub action checks all Markdown files in your repository for broken links. (Uses tcort/markdown-link-check)

image

Sample workflow

workflow "Markdown link check" {
  on = "push"
  resolves = ["markdown-link-check"]
}

action "markdown-link-check" {
  uses = "./"
}

Sample log

image