Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Set Custom Field From Assignee Who Last Held a Role

Paul Alexander
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Oct 04, 2023

I have Jira Cloud with JMWE add-on.

Goal: On transition, use a post function to set a custom field (developer) to the last worker who was assigned this issue in the role (developers).

Example: I need to persist the name of the developer who most recently was assigned to an issue. I want to set that worker's name in a customer field called 'developer'. To do so, when the issue gets closed by a QA Tester (who last touches that issue), I want to get the name of the most recent assignee who was in the role called 'developers' and stuff that name into a custom field that will persist for reporting.

1 answer

1 accepted

0 votes
Answer accepted
David Fischer _Appfire_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Oct 04, 2023

Hi @Paul Alexander 

you can use a Set Issue Fields post-function, add the Developer field to the list of fields to set, and for the value use this template:

{%set members = "Developers" | roleMembers%}
{%set developer=""%}
{%for assignee in issue|fieldHistory( "assignee" )%}
{%if members.includes("accountId:"+assignee.to)%}
{%set developer = "accountId:"+assignee.to%}
{%endif%}
{%endfor%}
{{developer}}

The Developer custom field should be a Single User Picker type field.

Paul Alexander
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Oct 06, 2023

Awesome, David. You're the best!

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
PERMISSIONS LEVEL
Site Admin
TAGS
AUG Leaders

Atlassian Community Events