I need to add a new date/time field to an epic one any child issue has been moved to "in progress", this is only to be added once as it will be used to identify at what point in time work on an epic officially started.
I'm struggling putting a rule together for this so any help would be appreciated!
This was actually a lot more straight forward than I thought! I'd like to also figure out how I can update all child issues retroactively.
Hi @Nate Ballantyne -- Welcome to the Atlassian Community!
Well done answering your own question! For your second question, what do you mean by:
I'd like to also figure out how I can update all child issues retroactively.
For example, do you want to:
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Bill!
I mean for all epics that already have child issues that have already moved to “in progress”, (or could be completed) how do I capture the date that happened against an epic
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for clarifying, and this is really two problems to solve:
For a scenario like this where one wants to retroactively set a field value, a scheduled trigger rule with JQL to scan the Epics (and their child issues) can help. The rule can be enabled until all "caught up", and then disabled.
For #1 above, the rule could use the lookup issues action to gather the child issues which are "in progress" for the trigger epic, and then use the minimum value of the Status Category Changed Date. For example with:
{{lookupIssues.statuscategorychangedate.toDate.min}}
Case #2 is a challenge, as the date / time when the first child issue moved to "in progress" is in the issue history, and that is not easily accessible by a rule. I recommend not trying to solve that with automation rules and instead set those manually.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is great, thank you! Will certainly be looking into the first one 😁
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.