Links Checker #98
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@v5 | |
| - name: Link Checker | |
| id: lychee | |
| uses: lycheeverse/lychee-action@v2.6.1 | |
| with: | |
| args: --accept '100..=103,200..=299,403,429' --exclude-all-private --timeout 60 . | |
| - 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 |