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
I'm creating a rule that checks to see if a custom User Picker field is empty. If so, I want to populate it with the assignee of the issue.
Unlike the behavior for Assignee, the default options for the User Picker are:
None of those will reference the assignee value. How can I reference the assignee (or the assignee email address) so that I can populate this custom user picker field?
You can populate a User Picker field with the Assignee value. You just need to choose from the (confusingly named) "Copy from..." operation in the little [...] button:
(I'm on Cloud - not sure if it's different on Server.)
This totally worked and, once you actually get there, it makes sense. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have you tried the advanced JSON edit option yet? Please see here for information about that approach:
https://support.atlassian.com/jira-core-cloud/docs/advanced-field-editing-json/
Best regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for the link. It was exactly what I needed. It took a bit of fiddling but this worked:
{
"fields": {
"customfield_10171": { "id": "{{assignee.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.