Tweak Percy cron trigger to not run on weekends (#10519

`Runs at 04:17, Monday through Friday.`
This commit is contained in:
Michael Telatynski 2023-04-05 13:45:07 +01:00 committed by GitHub
parent 09eefe14ea
commit ea6a2033ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@
name: Element Web - Build
on:
schedule:
- cron: "17 4 * * *" # every day at 04:17 UTC
- cron: "17 4 * * 1-5" # every weekday at 04:17 UTC
pull_request: {}
push:
branches: [develop, master]