feature: check for broken links periodically
This commit is contained in:
parent
5e5ac3f626
commit
df29f4cf6d
1 changed files with 18 additions and 0 deletions
18
.github/workflows/scheduled-link-checker.yaml
vendored
Normal file
18
.github/workflows/scheduled-link-checker.yaml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Scheduled broken link check
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
schedule:
|
||||
- cron: '0 13 * * 6'
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check links on site
|
||||
uses: mattorb/actions-muffet@v1.3.1
|
||||
with:
|
||||
args: >
|
||||
--timeout 20
|
||||
https://coryd.dev
|
Reference in a new issue