From a92362d6808818e5c733ad320a0e8aa2e8668ee3 Mon Sep 17 00:00:00 2001 From: puneetmahajan Date: Fri, 10 Nov 2023 15:59:22 +0530 Subject: [PATCH] let it run every 3 hours to see how many failures --- .github/workflows/schedule.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/schedule.yml b/.github/workflows/schedule.yml index c3f821a..df927f7 100644 --- a/.github/workflows/schedule.yml +++ b/.github/workflows/schedule.yml @@ -3,13 +3,15 @@ name: Schedule on: schedule: - cron: '55 12 * * *' # post mainnet epoch -# - cron: '00 12 * * *' # pre mainnet epoch -# - cron: '00 11 * * *' # post testnet epoch -# - cron: '0 10 * * *' # pre testnet epoch + # - cron: '00 12 * * *' # pre mainnet epoch + # - cron: '00 11 * * *' # post testnet epoch + # - cron: '0 10 * * *' # pre testnet epoch + - cron: '0 */3 * * *' # every 3 hours jobs: liquidstakeibc: - if: github.event.schedule == '55 12 * * *' + # if: github.event.schedule == '55 12 * * *' + if: github.event.schedule == '0 */3 * * *' runs-on: ubuntu-latest strategy: