https://github.com/peaceiris/actions-broken-link-checker
GitHub Actions for broken-link-checker (Find broken links, missing images, etc in your HTML)
https://github.com/peaceiris/actions-broken-link-checker
github-actions
Last synced: over 1 year ago
JSON representation
GitHub Actions for broken-link-checker (Find broken links, missing images, etc in your HTML)
- Host: GitHub
- URL: https://github.com/peaceiris/actions-broken-link-checker
- Owner: peaceiris
- License: mit
- Archived: true
- Created: 2019-05-10T13:37:54.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-19T14:54:48.000Z (almost 7 years ago)
- Last Synced: 2024-10-30T07:47:19.260Z (over 1 year ago)
- Topics: github-actions
- Language: Dockerfile
- Homepage:
- Size: 24.4 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/peaceiris/actions-broken-link-checker/blob/master/LICENSE)
[](https://github.com/peaceiris/actions-broken-link-checker/releases/latest)
[](https://github.com/peaceiris/actions-broken-link-checker/releases)
## GitHub Actions for broken-link-checker
- [stevenvachon/broken-link-checker: Find broken links, missing images, etc in your HTML.](https://github.com/stevenvachon/broken-link-checker)

## Getting started
### Create `main.workflow`
```hcl
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]
[MIT License - peaceiris/actions-broken-link-checker]: https://github.com/peaceiris/actions-broken-link-checker/blob/master/LICENSE
## About the author
- [peaceiris's homepage](https://peaceiris.com/)