New inputs
| Input |
Example |
Description |
| format |
json |
Use json as output format (instead of markdown) |
| output |
/tmp/foo.json |
Use different output filename |
| fail |
true |
Fail action on broken links |
Full example config
- name: Link Checker
uses: lycheeverse/lychee-action@v1.2.0
with:
# Check all markdown and html files in repo (default)
args: --verbose --no-progress **/*.md **/*.html
# Use json as output format (instead of markdown)
format: json
# Use different output filename
output: /tmp/foo.txt
# Fail action on broken links
fail: true