Hi All,
Hoping someone can help.
Expected outcome: When a Version is created in the Jira Project, an Issue Type is created and a template is applied.
Problem to solve: The issue is not created based on the automation due to the required fields not having values.
Things to note:
Steps taken:
This is the JSON Additional fields I have tried:
{
"properties": [{
"key": "issue.templates.automation",
"value": {
"applyTemplate": "TEMP-751"
}
}]
{
"fields": {
"customfield_10548": { "value": "PMU", "child": { "value" : "Maintenance"} }
}
}
}
The above does not work error:
Hi @Biancha
I have not used that addon before...Have you checked the documentation for that marketplace addon to see how it is supported by automation rules?
And I wonder if the template needs to be applied first...so...
Kind regards,
Bill
Thanks Bill,
I have figured it out.
The JSON Additional fields config now looks as follows:
{
"properties":[
{
"key":"issue.templates.automation",
"value":{
"applyTemplate":"TEMP-751"
}
}
],
"fields":{
"customfield_10548":{
"value":"PMU",
"child":{
"value":"Maintenance"
}
}
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well done!
So it appears there was just a comma missing between the JSON sections (template selection and data); is that correct?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That is correct, and the rule runs correctly now. The template is still not being applied; however, This would be a trial and error as I work through the Application Documentation.
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.