website: trigger the website action every work day

Summary:
https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onschedule

We don't need to run webiste workflow on every pushes or prs, but we do need to make sure it works, so let trigger it on every work day

Reviewed By: sggutier

Differential Revision: D51306012

fbshipit-source-id: 8c1425133fbf99c6b62ed37a1daa2a383a246b29
This commit is contained in:
Zhaolong Zhu 2023-11-14 09:03:08 -08:00 committed by Facebook GitHub Bot
parent 447cde1378
commit 3e2409653a

View File

@ -2,6 +2,8 @@ name: Publish https://sapling-scm.com
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 1-5'
jobs:
deploy: