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
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello All,
I appear to have some configuration issues with the following automation:
I am using Automation for JIRA (Full) to add participants, however at the moment it appears to be clearing the values and substituting the ones in the configuration instead of just adding the values to the field.
I have attempted to use advanced field configuration, however this has just cause the entire field to be purged on issue update.
Here is the advanced field configuration:
{"update":{"customfield_10103":{"add": {"name":"username"}}}}
Thanks in advance.
Hi John,
Your advanced configuration is slightly wrong, it is missing the [ ].
{
"update": {
"Request participants": [
{
"add": {"name":"username"}
}
]
}
}
The above should work.
Cheers,
Scott
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hi
question
if i want to add the the request participants the approver(from the approver field) , what do i need to change in the jql?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've written a guide on how to fix the original issue (mentioned on top):
https://community.atlassian.com/t5/Jira-Service-Management/Remove-quot-Request-Participants-quot-using-Automation-rule/qaq-p/460812#U1630417
In short terms - you should not use "name", you must use "id".
I hope that helps! :)
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.