Tweak Percy cron trigger to not run on weekends (#10519
`Runs at 04:17, Monday through Friday.`pull/28788/head^2
parent
09eefe14ea
commit
ea6a2033ee
|
@ -4,7 +4,7 @@
|
||||||
name: Element Web - Build
|
name: Element Web - Build
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "17 4 * * *" # every day at 04:17 UTC
|
- cron: "17 4 * * 1-5" # every weekday at 04:17 UTC
|
||||||
pull_request: {}
|
pull_request: {}
|
||||||
push:
|
push:
|
||||||
branches: [develop, master]
|
branches: [develop, master]
|
||||||
|
|
Loading…
Reference in New Issue