Hi,
I try to build automation rule that tigered by assignee change,
I want to add a condition that checks if the former assignee belongs to a specific group.
I tried to use smart value fieldChange.from to get the previous assignee id but now I want to check if this id is in specific group, cannot find easy way to do it
Any idea ? thanks , Gal.
Hello @Gal Fatal ,
You can try to check below if this helps.
Add a custom user picker field (e.g., Previous Assignee
)
On assignee change:
Set this field to {{changelog.assignee.from}}
Use the User is in group condition on that field (this is allowed)
Then proceed with your actions
Steps -
Create a User Picker (single user) field named Previous Assignee
Add it to your issue screens
2. Automation Rule Setup
Trigger: Field Value Changed
Field to monitor: Assignee
Action: Edit Issue → Set “Previous Assignee”
Choose field: Previous Assignee
Set value using smart value:
{{changelog.assignee.from}}
Condition: User Condition
User field: Previous Assignee
Condition: “is in group”
Group name: Your desired group (e.g., engineering-team)
Action 2: [Your desired action, e.g., send message]
What is the source of your information?
There is no "branch: lookup user" and the User Condition cannot access a smart value, such as from the changelog.
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Bill Sheboy ,
Thank you for correcting me.
You're correct — there's no Branch: Lookup user or ability to check group membership directly on the changelog.assignee.from
value.
However, in this case Gal Fatal can:
Create a User Picker custom field (e.g., "Previous Assignee")
Use changelog.assignee.from to populate it upon assignment change
Add a User condition to check if that field’s user is in your target group
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, that is what I suggested, and...it requires adding a Re-fetch Work Item Data after the edit so the condition gets the updated information.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Gal Fatal
There are currently only two ways to do what you ask:
Kind regards,
Bill
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.