You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
How does this work when you CLONE and issue..
The person who clones is different than the originator of the ticket.. how do I get the NEW CLONED ticket to have the person that cloned it as the REPORTER - I do not want the original ticket creator as the reporter..
To set the reporter of the newly cloned ticket to the issue creator (the person who cloned) I did the following:
In the advanced part of the then statement I added this code:
{
"fields": {
"reporter": { "id": "{{initiator.accountId}}" }
}
}
This automatically changed the reporter of the cloned issue for me.
@soren nielsen The clone issue process actually clones the issue so there is no way to change the reporter until after the issue is cloned. You could use automation to change the reporter. I think this should work.
You might want to put some additional parameters in your JQL to limit it to a specific issue type, etc.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That sounds great, can I do this on the server version? or is this only for cloud?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@soren nielsen my example was cloud. There is automation on server and it should work the same there.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the same question, but the above example is not possible. It is possible to set the assignee to the issue creator, but not the reporter. How can I do that?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
to change the reporter to the initiator you need to select "edit issue" and select field "reporter" and set the smart value to {{initiator.accountId}}. Choose "set value" instead of "copy from"
Please see the screenshot:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This was a long time ago already. I've solved it by using the more options and enter the following statement:
{
"fields": {
"reporter": { "id": "{{initiator.accountId}}" }
}
}
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.