actions-broken-link-checker icon indicating copy to clipboard operation
actions-broken-link-checker copied to clipboard

GitHub Actions for broken-link-checker (Find broken links, missing images, etc in your HTML)

license release GitHub release date

GitHub Actions for broken-link-checker

GitHub Actions for broken-link-checker

Getting started

Create main.workflow

workflow "Main workflow" {
  on = "push"
  resolves = ["broken-link-checker"]
}

action "is-branch-master" {
  uses = "actions/bin/filter@master"
  args = "branch master"
}

action "broken-link-checker" {
  needs = "is-branch-master"
  uses = "peaceiris/[email protected]"
  args = ["https://example.com", "-ro"]
}

License

MIT License - peaceiris/actions-broken-link-checker

About the author