scheduled link check #826
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: scheduled link check | |
on: | |
repository_dispatch: | |
workflow_dispatch: | |
schedule: | |
- cron: "00 18 * * *" | |
jobs: | |
check_links: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: check links with lychee-action | |
uses: lycheeverse/[email protected] | |
with: | |
args: --verbose --no-progress **/*.md **/*.html | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: upload lychee-action output artifact | |
uses: actions/[email protected] | |
with: | |
name: lychee-action-output | |
path: ./lychee/out.md | |