I am trying to check if the custom field value = yes (It is a Radio Button) and if the user is in a specific group - using ScriptRunner - Jira Cloud - This is a Condition
Is this the best way to do that? Or is there a better way?
(
(issue["customfield_123"] || {}).value == "Yes" &&
user.groups.includes("Any_Local_Group_Name")
) ||
Thank you for your question.
I can confirm that the ScriptRunner for Jira Cloud plugin provides workflow Validators using the Jira Expression Framework as documented in the Atlassian API documentation page located here or in the documentation page located here which explains how to add in a new validator to your workflow.
We can confirm that when viewing the Jira Expression Framework API documentation page linked above you can navigate to the Context variables section which shows what variables are provided by this framework that can be used to create the expression.
If you then click on one of the variables it will show all the properties that can be called on the variable for the expression such as for the issue variable as shown here and you will be able to check this to see if Atlassian provides a variable that contains the item you want to check against.
We can also confirm we have some examples of validators that can be used as a reference guide in the page located here as well as in the documentation page located here.
We would recommend using these documentation pages linked above as a reference guide to help to create the validator expression that you require.
I hope this information helps.
Kind regards,
Kate
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.