Update broken-link-check.yml #8
Workflow file for this run
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
on: | |
schedule: | |
- cron: 0 0 * * * # run daily | |
repository_dispatch: # run manually | |
types: [check-link] | |
push: # run on push | |
name: Broken Link Check | |
jobs: | |
check: | |
name: Broken Link Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for broken links | |
id: link-report | |
uses: ruzickap/action-my-broken-link-checker@v2 | |
with: | |
pages_path: ./_site/ |