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: 14 days ago
JSON representation

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

Lists

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)

GitHub Actions for 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/)