Skip to end of banner
Go to start of banner

Set approver in Jira Service Desk

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Call this script from a workflow transition post-function. It will set the approver based on the value of a custom field.

The keyword “fruit” in the script below represents a SIL alias which is the best practice for access custom field data. See Custom Fields Aliases.

if(fruit == "Apple") {
    customfield_10700 = "jmuse";
}
else if(fruit == "Orange") {
    customfield_10700 = "efoulkes";
}
else if(fruit == "Peach") {
    customfield_10700 = "jwang";
}
  • No labels