link-check #7
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 | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| # External links rot without a commit to trigger a rerun, so a dormant repo | |
| # would otherwise never find out. | |
| schedule: | |
| - cron: "0 6 * * 1" | |
| workflow_dispatch: | |
| # The reusable workflow restricts itself to this as well, but a called workflow | |
| # can only ever narrow what the caller holds -- so the caller is where the | |
| # ceiling is actually set. | |
| permissions: | |
| contents: read | |
| jobs: | |
| links: | |
| uses: gojiplus/r-canon/.github/workflows/reusable-link-check.yml@v2 |