Hi there,
I'm looking for a Jira automation where the release note fields from all linked tickets are all added to the release note field of the parent tick. To get some kind of automated overview in the parent ticket.
Tried it using branching in the automation but have not been succesfull.
Many thanks for all the help.
Kind regards,
Dirk
Hi @Dirk De Mal - How are you determining "parent ticket"? Is this a situation where all of the issues roll up to an epic or are you using a custom link type to establish a logical hierarchy?
This will help in determining the best path for consolidating the release notes into one issue.
Hey @Mark Segall ,
The parent issue here is the "trigger issue". So for example let's say the moment that issue is transitioned to a specific state.
There will be several linked issues on this trigger issue (no matter the link type). The goal is to capture a custom field from the linked issues, concatenate the values and edit the trigger issue with this value.
So it'll be a custom link type (not the epic link).
The main issue seems to be that in an Automation, the second you branch the data from within the brand itself it not accessible outside of the branch/root automation rule.
(Seems to be this: https://jira.atlassian.com/browse/JSWCLOUD-22527)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This should be able to work...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mark,
Big thx for your feedback.
The parent ticket is not an epic ticket but a created issuetype (Release). My mistake.
So this is the automation we are working on...Everything works as expected until the last action...
So the next action is where I am stuck...Would it be possible to write the {{getreleasenotes}} value to the triggerissue value using the additional field configuration?
Many thx again for the help.
Kind regards,
Dirk
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would try this:
issueLink = {{issue}}
{{lookupIssues.Release Notes}}
Note - If you want some formatting and your release notes field is set to use wiki renderer you could do something like this:
{{#lookupIssues}}
- *{{key}}*: {{Release Notes}}
{{/}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mark,
Tested it and it works...
Big big thx for all the help.
Kind regards,
Dirk
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Mark Segall ,
Thx for the help. The parent ticket is an Epic ticket where all of the issues reside under. We just link the tickets under an epic ticket.
Many thx for your help on this.
Kind regards,
Dirk
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.