Skip to content

Commit 6ebf9cb

Browse files
authored
Run link checker action daily (#331)
Run link checker action daily, so that we catch broken links quickly. Especially important to catch and fix links in the book (Patterns Level 2+3). Also see: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events
1 parent d44ee0e commit 6ebf9cb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/link-checker.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
branches:
99
- "main"
1010
pull_request:
11+
schedule:
12+
# * is a special character in YAML so you have to quote this string
13+
- cron: '30 8 * * *'
1114

1215
jobs:
1316
linkChecker:

0 commit comments

Comments
 (0)