Reputation: 164
I want to schedule Jenkins jobs at three specific times (viz. 5 AM, 1 PM, 5 PM). What is the expression to do that?
Regards Manish Mehra
Upvotes: 0
Views: 217
Reputation: 141
Use below expression if you want to schedule it at 5:30, 13:30 and 17:30
30 5,13,17 * * *
Upvotes: 1
Reputation: 16516
you can use expression like : 0 5,13,17 * * *
Please refer to Cron Wiki for better understanding.
Upvotes: 1