I guess I'm running against an issue of poor integration of advanced roadmaps into Jira.
I'm using a issue type in hierarchy, one level above the Epic, in advance Roadmaps
Under some conditions I want to make automatically an epic and give that Epic the issue from Advanced roadmap as the Parent link (not to confuse with linked issues in JIRA!!).
Unfortunately I can not find the field "parent link" in the list when I create the automation rule.
Am I correct that this is missing? If not, how can I fill the "parent link" field. If correct, is this issue already on the backlog from Atlassian to solve, as it really restricts the added value of Advanced Roadmaps? (more in general, the mix-up between link fields of JIRA and Parent link field for Adv Roadmaps works very confusing.
Hi Jeroen,
You might try using the More options when creating the issue and add something like this:
{
"fields": {
"parent": {"key": "{{triggerIssue.key}}"}
}
}
Not sure whether it is the trigger issue or something else that is causing the trigger to happen so you might need to tweak that.
Thanks for answering. I tried couple of things but, not yet with success.
I have found out that Parent link from Advanced roadmaps is a customfield and I know the ID "customfield_13100".
when I use your code, replacing "parent" by "customfield_13100" it should work.
Assuming that {"key": " {{triggerissue.key}}"}. means: fill the customfield with the value of the key from the issue that triggers creating the new issue, Resulting the new issue to have the trigger issue as its parent.
{
"fields": {
"customfield_13100": {"key": "{{triggerissue.key}}"}
}
this is the error messasge. I get:
this is the error message I get:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I did try again with:
{
"fields": {
"Parent link": "{{triggerissue.key}}"
}
}
It works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great! Glad you got it working.
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.