Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paulschuberth/check-links-action
Simple action to check if links reachable from a given url are okay
https://github.com/paulschuberth/check-links-action
action check links
Last synced: 10 days ago
JSON representation
Simple action to check if links reachable from a given url are okay
- Host: GitHub
- URL: https://github.com/paulschuberth/check-links-action
- Owner: paulschuberth
- License: mit
- Created: 2022-11-04T22:36:57.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-31T20:06:24.000Z (4 months ago)
- Last Synced: 2024-12-15T21:12:23.104Z (15 days ago)
- Topics: action, check, links
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Check Links Action
This is a very basic composite action that uses `wget` to check recursively if links
on a page a reachable.## Usage:
```yaml
- name: Check Links
uses: paulschuberth/check-links-action@v1
with:
# Required: The Url from which wget starts to crawl the website
start-url: 'http://localhost:1313'# Optional:
broken-link-message: 'broken link!'
```