We are trying to determine if certain values appear within a specific string in the JIRA ticket description and then adding relevant components to the ticket. We are able to action this and add a single component but this then gets overwritten with the next value rather than adding to the list. Having searched the web there is a suggestion that there should be a "copy from current issue" component that could be added to copy over but this doesn't appear to be available to us.
The Copy from Issue component below is not present in our instance of Jira Automation
Hi @Mike Monk ,
I am a bit perplexed why you can't achieve what you show based upon this article but I too could not.
however try using this JSON instead...
{
"update": {
"components" : [
{
"add": {
"name":"OS"}
}
]
}
}
Please note that you will need to replace the "OS" with your desired value.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jack,
That was the article I had found and was also unsure why we didn't have the option, but your JSON code works perfectly, thanks very much for the assistance
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.