From 47fbefc37a80b09828e2543f387d96bbd232e46f Mon Sep 17 00:00:00 2001 From: Dominik Schubert Date: Wed, 20 Nov 2024 13:26:21 +0100 Subject: [PATCH] add scheduled daily runs at 5AM --- .github/workflows/integrations.go.yml | 2 ++ .github/workflows/integrations.node.yml | 2 ++ .github/workflows/integrations.python.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/integrations.go.yml b/.github/workflows/integrations.go.yml index 92d03f7..01b4baa 100644 --- a/.github/workflows/integrations.go.yml +++ b/.github/workflows/integrations.go.yml @@ -7,6 +7,8 @@ on: pull_request: branches: - main + schedule: + - cron: '0 5 * * *' # once daily at 5AM workflow_dispatch: inputs: upstream-version: diff --git a/.github/workflows/integrations.node.yml b/.github/workflows/integrations.node.yml index ac988e0..6f56d6b 100644 --- a/.github/workflows/integrations.node.yml +++ b/.github/workflows/integrations.node.yml @@ -7,6 +7,8 @@ on: pull_request: branches: - main + schedule: + - cron: '0 5 * * *' # once daily at 5AM workflow_dispatch: inputs: upstream-version: diff --git a/.github/workflows/integrations.python.yml b/.github/workflows/integrations.python.yml index ee4f631..c32f6b2 100644 --- a/.github/workflows/integrations.python.yml +++ b/.github/workflows/integrations.python.yml @@ -7,6 +7,8 @@ on: pull_request: branches: - main + schedule: + - cron: '0 5 * * *' # once daily at 5AM workflow_dispatch: inputs: upstream-version: