GitHub Actions for broken-link-checker
Getting started
main.workflow
Create 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/actions-broken-link-checker@v0.7.8"
args = ["https://example.com", "-ro"]
}
License
MIT License - peaceiris/actions-broken-link-checker