From ea6a2033eed9826196cf8d268affb92eb1b9ac25 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 5 Apr 2023 13:45:07 +0100 Subject: [PATCH] Tweak Percy cron trigger to not run on weekends (#10519 `Runs at 04:17, Monday through Friday.` --- .github/workflows/element-web.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/element-web.yaml b/.github/workflows/element-web.yaml index 6191cfbf7f..5658f1c22f 100644 --- a/.github/workflows/element-web.yaml +++ b/.github/workflows/element-web.yaml @@ -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]