Skip to content

Commit 9a8f796

Browse files
committed
Use day name in "Spell Check" workflow's schedule trigger
At the time it was written, there was some lack of support for the use of day name abreviations in the crontab definition for the `schedule` trigger of GitHub Actions workflows (perhaps it was the JSON schema?). Since that time, the issue was resolved. The crontab is easier to understand with the day name in place of day number.
1 parent 5d5afef commit 9a8f796

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/spell-check-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
pull_request:
55
push:
66
schedule:
7-
# Run every Tuesday at 03:00 UTC to catch breakage caused by updates to the dictionary
8-
- cron: "0 3 * * 2"
7+
# Run every Tuesday at 8 AM UTC to catch new misspelling detections resulting from dictionary updates.
8+
- cron: "0 8 * * TUE"
99

1010
jobs:
1111
spellcheck:

0 commit comments

Comments
 (0)