Hi,
I have configured the portfolio hierarchy in Jira to set initiatives are parents of epics.
I have also enabled the Parent Link (locked) field in Epic screen. It is automatically populated with Initiatives.
I want to make the Parent Link field mandatory. How can I do it?
Please help. My hierarchy configuration looks as below:
Thanks
In the end I built automation routines that email the reporter (generally the person who created) every day until they or someone else updates the Parent Link or Epic Link field. The email includes a link to a confluence page on how to do this and also links to the issue that does not have a Parent/Epic link.
Hopefully the new Parent field which replaces the Parent and Epic link fields can be made mandatory!
Brendan, did you build automation routines using a cron job with custom code or some Jira provided mechanism? We're looking to solve the exact same problem.
Hi Eric,
Through Jira Automation. Happy to provide the script code routine logic. It's quite a bit in it so maybe easier to email the .json file and you can import and modify it for your Jira projects and other parameters you'd need to change. Alternately I have posted most of it here which also should do the job.
In addition in the 'When: Scheduled' section I had to build/call a jql query to optimise further. I restricted to last 7 days. They get emailed every day for 7 days. After that it's unlikely that they will do anything so manual follow up ever now and then.
project in (<Insert the Jira projects you want in scope>) and created >= -7d and issuetype in (<Insert the Jira issue types you want in scope>) and status in (<Insert the Jira active statuses you want in scope>)
I did a variant for the Epic Link as well. Pretty similar - replace Parent Link with Epic fields in relevant places.