I would like to create an automation rule which is triggered by Issue created. When some conditions are met, I would like to set the issue key in the Parent field. The issue key is always the same, for example HRA-36.
Do you know how to do it?
I was trying with Edit issues but no actions were performed.
UPDATE:
Thanks to @Luis Machado, the automation rule works. You have to change "set" to "key" and remove curly brackets. So this is the correct syntax:
{
"fields": {
"parent": {
"key": "HRA-36"
}
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.