Check for broken links #483
This file contains 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 for broken links | |
on: | |
workflow_dispatch: # allow manual trigger | |
workflow_run: # Run after GH Pages deployment | |
workflows: | |
- pages-build-deployment | |
types: | |
- completed | |
schedule: | |
- cron: '49 11 * * 1' # Run every Monday at 11:40 UTC (6:49 AM CDT) | |
jobs: | |
crawl_for_broken_links: | |
runs-on: ubuntu-latest | |
name: Broken-Links-Crawler | |
steps: | |
- name: Checking Links | |
uses: ScholliYT/Broken-Links-Crawler-Action@v3.3.1 | |
with: | |
website_url: 'https://uw-madison-datascience.github.io/ML-X-Nexus/' | |
verbose: true |