🔗 Link check #3
Workflow file for this run
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: 🔗 Link check | |
| # Check for broken links in README files. | |
| # Runs weekly on Mondays at 8:00 UTC and on every push to main. | |
| on: | |
| schedule: | |
| - cron: "0 8 * * 1" | |
| push: | |
| paths: | |
| - "README.md" | |
| - "README_Chinese.md" | |
| - "README_Japanese.md" | |
| - "README_Spanish.md" | |
| - "README_Traditional_Chinese.md" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| link-check: | |
| name: Check links in README files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Check links in README files | |
| uses: lycheeverse/lychee-action@8646ba30535128ac92d33dfc9133794bfdd9b411 # v2 | |
| with: | |
| args: >- | |
| --verbose | |
| --no-progress | |
| --accept 200,403,408 | |
| README.md | |
| README_Chinese.md | |
| README_Japanese.md | |
| README_Spanish.md | |
| README_Traditional_Chinese.md | |
| fail: true |