Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 4 months 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 (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-19T14:54:48.000Z (over 5 years ago)
- Last Synced: 2024-08-01T16:35:20.325Z (7 months 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
[![license](https://img.shields.io/github/license/peaceiris/actions-broken-link-checker.svg)](https://github.com/peaceiris/actions-broken-link-checker/blob/master/LICENSE)
[![release](https://img.shields.io/github/release/peaceiris/actions-broken-link-checker.svg)](https://github.com/peaceiris/actions-broken-link-checker/releases/latest)
[![GitHub release date](https://img.shields.io/github/release-date/peaceiris/actions-broken-link-checker.svg)](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/[email protected]"
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/)