/
Get Score value
Get Score value
import com.atlassian.jira.component.ComponentAccessor
def issueManager = ComponentAccessor.issueManager
def customField = ComponentAccessor.getCustomFieldManager().getCustomFieldObjectsByName("Score")[0] // Your Score custom field by name
def issue = issueManager.getIssueByCurrentKey("TESZT-51")
def value = issue.getCustomFieldValue(customField) // Your Score value, returns Double
log.warn("Your Score value: " + value)
Related content
WSJF from SAFe
WSJF from SAFe
Read with this
Key-Value Service
Key-Value Service
Read with this
Help and Support
Help and Support
Read with this
Scriptrunner Integration
Scriptrunner Integration
Read with this
Configuring an Issue Score field
Configuring an Issue Score field
Read with this
Scriptrunner Integration
Scriptrunner Integration
Read with this