Robot trigger in Orchestrator

Hi, I want to set a trigger like this: It must start to run process at 08:00 , finish at 20:00 and run process one time in every 30 min. every day. I can not schedule this. Can you show me with pictures please.

Hi @Hulya_Cetinkaya

How about this cron expression?

0 0,30/0,30 8-20 ? * * *

Regards
Gokul

Thank you so much. Please can you write me that with only run in Monday-Friday, not weekend.

How about this cron expression?

0 0,30/0,30 8-20 ? * MON-FRI *

and the last question :slight_smile:
Process must start again when it finished (non-stop) , every day between 08:00-19:00

@Hulya_Cetinkaya - what the @Gokul001 mentioned expression will make your bot to trigger every 30 min between 8:00 - 20:00. I believe this is what you are looking for according to initial discussion . If you want to run the bot between 8:00 - 19:00, just need minor change in that expression

0 0,30/0,30 8-19 ? * MON-FRI *

Correct me if I am wrong :slight_smile:

0 0,30/0,30 8-19 ? * MON-FRI *

Regards
Gokul