Hi
I try to build some automation with Automation for Jira solution.
I run cron every 3 thursday 19:00 (0 00 19 ? * 5#3). Cron create issue with start time and end time.
Start time: {{now.plusDays(7).jqlDateTime}}
End time: {{now.plusDays(7).plusHours(6).jqlDateTime}}
Idea is that one ticket is created one week before and added datetime. Or there is better solution that i can create issue one week before last thursday every month with same start time and end time.
Start time should be added 24.11.2022 19:00 and End time should be added 25.11.2022 01.00 AM. In december it should be 22.12.2022 19.00 Start time and end 23.12.2022 01.00.
Issue is created but no Start or End time is added. What i did do wrong?
Hi @Urmo
Try using the following for start and end time:
Start time: {{now.plusDays(7).jqlDate}}
End time: {{now.plusDays(7).plusHours(6).jqlDate}}
ref: Jira smart values - date and time
Regards
Sam
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.