happy-wolf-7852
10/16/2024, 6:17 PM@schedule(hourly=True)
which runs the workflow every hour. (taken from the doc)
but it is hourly (N=1). Might be achieved by a specific “cron job pattern”? Thanks!
PS:
Maybe this is it?
@schedule(cron='0 */2 * * *')
actually the above throws an error but this may work:
@schedule(cron='0 0/2 * * ? *')
square-wire-39606
10/17/2024, 1:06 AM