Skip to content

Commit aec1b39

Browse files
committed
Use day name in "Check Workflows" 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 0d8c152 commit aec1b39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .github/workflows/lint-config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- "Taskfile.ya?ml"
1414
schedule:
1515
# Run every Tuesday at 03:00 UTC to catch breakage caused by changes to the GitHub Actions workflow schema
16-
- cron: "0 3 * * 2"
16+
- cron: "0 8 * * TUE"
1717

1818
jobs:
1919
lint:

0 commit comments

Comments
 (0)