From 0e2fdfe0ddaad317fcb18884c51a4f7c742e3abe Mon Sep 17 00:00:00 2001 From: Josh Crites Date: Thu, 29 May 2025 13:29:13 -0400 Subject: [PATCH 1/2] add scheduled job --- .github/workflows/docs-typesense.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/docs-typesense.yml b/.github/workflows/docs-typesense.yml index f6ae1bd2ad3b..d0ac0c9a7c60 100644 --- a/.github/workflows/docs-typesense.yml +++ b/.github/workflows/docs-typesense.yml @@ -2,6 +2,9 @@ name: Docs Scraper on: workflow_dispatch: + schedule: + # Run the workflow every night at 3:00 AM UTC, after nightly release + - cron: "0 3 * * *" push: branches: - master From c655f9cca2e2b73b2193ac0f97c9833f9eef3bb3 Mon Sep 17 00:00:00 2001 From: Josh Crites Date: Thu, 29 May 2025 14:49:19 -0400 Subject: [PATCH 2/2] run 2 hrs after release --- .github/workflows/docs-typesense.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs-typesense.yml b/.github/workflows/docs-typesense.yml index d0ac0c9a7c60..76478ef23dc8 100644 --- a/.github/workflows/docs-typesense.yml +++ b/.github/workflows/docs-typesense.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: schedule: # Run the workflow every night at 3:00 AM UTC, after nightly release - - cron: "0 3 * * *" + - cron: "0 4 * * *" push: branches: - master