I am trying to replicate MS Project schedule modeling ability in Jira. I figured out how to have a ticket's start move to be 1 business days after the blocker's due date:
IF trigger issue due date changes
THEN for blocks start date set to: {{triggerissue.duedate.plusBusinessDays(1)}}
That works well!
But now I want the due date on the destination issue to be the field change to the start date of the destination issue caused by the above. I can't figure out what to put in?
So I currently have:
IF trigger issue due date changes
THEN for blocks: started date set to {{triggerissue.duedate.plusBusinessDays(1)}}
AND due date set to {{targetissue.startdate.fieldchange}}
The last bit just empties out the due date field! Why? What am I doing wrong?
first, add a "log" action to print the data you are actually trying to set to the field.
second, make sure the data you send is what the destination field can accept.
Usually this behaviour happens when you try to send data in format the field not accept, so the field value is cleared instead.
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.