podcast-list-update #450
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 | |
| on: | |
| repository_dispatch: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "00 18 * * 1" | |
| jobs: | |
| linkChecker: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - name: Link Checker | |
| id: lychee | |
| uses: lycheeverse/lychee-action@v2.4.0 | |
| with: | |
| fail: false # Don't fail action on broken links | |
| failIfEmpty: false # Don't fail action if no links were found | |
| args: --config .lychee.toml . https://engineeringkiosk.dev/sitemap-0.xml |