File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
# ------------------------------------------
3
3
# Scheduled check of versions
4
- # - insight as to when to push version updates
5
- # to Practialli Clojure CLI Config
4
+ # - use as non-urgent report on versions
5
+ # - Uses POSIX Cron syntax
6
+ # - Minute [0,59]
7
+ # - Hour [0,23]
8
+ # - Day of the month [1,31]
9
+ # - Month of the year [1,12]
10
+ # - Day of the week ([0,6] with 0=Sunday)
6
11
#
7
12
# Using liquidz/anta to check:
8
13
# - GitHub workflows
12
17
name : " Scheduled Version Check"
13
18
on :
14
19
schedule :
15
- - cron : ' 0 4 * * *' # at 04:04:04 ever day
16
- workflow_dispatch : # Run manually via GitHub Actions Workflow page
20
+ - cron : " 0 4 * * *" # at 04:04:04 ever day
21
+ # - cron: "0 4 * * 5" # at 04:04:04 ever Friday
22
+ # - cron: "0 4 1 * *" # at 04:04:04 on first day of month
23
+ workflow_dispatch : # Run manually via GitHub Actions Workflow page
17
24
18
25
jobs :
19
26
scheduled-version-check :
You can’t perform that action at this time.
0 commit comments