Skip to content

Releases: gaurav-nelson/github-action-markdown-link-check

v0.2.0

27 Aug 23:15
Compare
Choose a tag to compare

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/github-action-markdown-link-check@v0.2.0

Release version 0.1.0

03 Apr 05:25
59abf54
Compare
Choose a tag to compare

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