chore(actions): bump Morrison-Lab/gha/.github/workflows/summary.yml from 1 to 2 #502
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 | |
| # Thin caller for the shared reusable workflow in Morrison-Lab/gha. | |
| # The reusable workflow reproduces the previous standalone behavior: lychee | |
| # link check over .qmd/.md/.html, a PR skip-label ("links checked by hand"), | |
| # and auto-filing an issue when links break on main. We pass our repo-local | |
| # lychee.toml so the qwt-specific excludes (e.g. quarto.org) still apply. | |
| # See https://github.com/Morrison-Lab/gha for inputs and versioning. | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, synchronize, reopened, labeled, unlabeled] | |
| schedule: | |
| # Run weekly on Mondays at 9:00 UTC to catch link rot | |
| - cron: '0 9 * * 1' | |
| workflow_dispatch: | |
| jobs: | |
| # Keep the job id (link-checker) matching the previous standalone workflow so | |
| # the status-check context name doesn't change. | |
| link-checker: | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: read | |
| uses: Morrison-Lab/gha/.github/workflows/check-links.yml@v2 | |
| with: | |
| lychee-config: lychee.toml |