I have a project that auto creates additional tickets in other projects when a ticket is opened in project 1 (using post function "Create new issue"). I have been asked to set the "Due Date" field (in project 2) from the "Target End Date" field (in project 1) and add 72 hours or 3 days to it. I have been able to set the "Due Date" field (in project 2) to the "Target End Date" (from project 1), but not sure how to add the additional time (72hrs or 3 days) to the "Due Date" field in project 2.
Thanks
Jeff
Hi Jeff,
your post-function "Create new issue" has to come from an app that is installed in your Jira, since it is no standard Jira post-function. Can you tell us which one you are using, so we can help you with your problem?
Best,
Ramin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Then, you can use the "Set new fields" functionality in the post-function to set the due date plus three days using the following Nunjucks expression:
{{ issue.fields["Target end"] | date('add' , 3 , 'days') | date("YYYY-MM-DD") }}
So it looks like this in your "Create issue(s)" post-function:
Let me know, if this works for you :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Ramin,
Thank you very much, that worked for what I was looking to do.
Thanks for taking the time to help me out with this.
Jeff
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jeff - Welcome to the Atlassian Community!
Have you thought about using an automation rule instead of a post function in the workflow? Then it can be used more universally.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think you're looking for the "Date plus unit" function.
...and not for nothing, you might add "BusinessDays" instead of just "days." :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join us to learn how your team can stay fully engaged in meetings without worrying about writing everything down. Dive into Loom's newest feature, Loom AI for meetings, which automatically takes notes and tracks action items.
Register today!Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.