Add Ueli Rutishauser to EB list and sort alphabetically #310
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
| # Workflow for link checking with lychee | |
| name: Link Check Source Files with Lychee | |
| on: | |
| # Runs weekly every Sunday at 05:00 UTC (midnight EST) | |
| schedule: | |
| - cron: '0 5 * * 0' | |
| # Runs on pull requests targeting the dev branch | |
| pull_request: | |
| branches: ["main"] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| link_check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Link Checker | |
| id: lychee | |
| uses: lycheeverse/lychee-action@v2 | |
| with: | |
| # --base resolves root-relative paths (e.g. /events/) against the live site | |
| # --accept includes 403/429 since many destinations (mathworks, hilton, doi.org, | |
| # slack invites) reject lychee's user-agent rather than the link being broken | |
| # --insecure: lychee (and sphinx) hit SSL cert issues on INCF URLs | |
| args: >- | |
| --verbose | |
| --no-progress | |
| --base 'https://neurodatawithoutborders.github.io/' | |
| --accept '200..=299,403,429' | |
| --max-retries 2 | |
| --insecure | |
| './content/**/*.md' | |
| './content/**/*.html' | |
| './content/**/*.rst' | |
| # Don't block PRs on the report; the job summary still surfaces broken links | |
| # so they can be triaged separately. Pre-existing dead links in archived | |
| # event pages otherwise fail every PR. | |
| fail: false |