Skip to content

Commit

Permalink
let it run every 3 hours to see how many failures
Browse files Browse the repository at this point in the history
  • Loading branch information
puneet2019 committed Nov 10, 2023
1 parent b01527d commit a92362d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a92362d

Please sign in to comment.