Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork175
Links Checker#71
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
name:Links Checker | |
on: | |
workflow_dispatch: | |
schedule: | |
-cron:"0 0 1,15 * *"# twice a month | |
jobs: | |
linkChecker: | |
runs-on:ubuntu-latest | |
steps: | |
-uses:actions/checkout@v4 | |
-name:Link Checker | |
id:lychee | |
uses:lycheeverse/lychee-action@v2.3.0 | |
with: | |
args:--accept '100..=103,200..=299,403,429' --exclude-all-private . | |
-name:Create Issue From File | |
if:env.lychee_exit_code != 0 | |
uses:peter-evans/create-issue-from-file@v5 | |
with: | |
title:Broken Link Detected (Help Wanted) | |
content-filepath:./lychee/out.md | |
labels:report, automated issue, good first issue |