Add 10-year anniversary video to news items #6
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: Check Links in PRs | |
| on: | |
| pull_request: | |
| paths: ['**.md'] | |
| workflow_dispatch: | |
| jobs: | |
| linkChecker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Link Checker | |
| id: lychee | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| fail: true | |
| args: | | |
| './**/*.md' | |
| --max-concurrency 1 | |
| --no-progress | |
| --exclude-path 'meetings.md' | |
| env: | |
| # avoid 429 errors (too many requests) on github.com api requests | |
| GITHUB_TOKEN: ${{secrets.TOKEN_GITHUB}} |