I have the following process in Jira Cloud:
Epic - Issue1(subtask1,subtask2,subtask3), Issue2(subtask1,subtask2,subtask3), Issue3(subtask1,subtask2,subtask3), Issue4(subtask1,subtask2,subtask3)
using JMWE I made the following:
when Epic is created an issue1 is created when issue1 is created subtask1 is created
this was made via workflows
What I need is:
1. When Issue 1 is created have the Epic Name field be populated with the Epic which it was created from to link them and use this link for issue2,3,4
2. when subtask3 is transitioned to done create issue2 which is linked to the epic
---
Thanks in advance if anyone can help
Hi @Alex Koxaras _Relational_ thanks for your reply, this line really helped - What you want to do is to copy the Epic's key to the child's epic link field
I did the following:
1. Manipulate the issue workflow via subtask transition
2. Manipulate the epic workflow via issue transition
3. Set the epic link field value for issue1 to epic key
4. Set the epic link field value to copy from the current issue when the transition is making a new issue
Sound complicated but for me, this is a perfect solution.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Javanshir Mustafayev _ HIT
{% set subtasks = issue | parentIssue | subtasks("status") %}
{% set trigger = true %}
{% for v in subtasks %}
{% if v.fields.status.name != "Done" %}
{% set trigger = false %}
{% endif %}
{% endfor %}
{{trigger}}
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.
Did you manage to work it out?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.