Missed Team ’24? Catch up on announcements here.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

how to check a parent issue custom field

Jacob francois October 11, 2018

I am working on a post function custom email -

 

I am looking to create a condition that checks if a certain checkbox was selected in the parent issue. 

 

---------------------

 

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Maciej Olszewski October 11, 2018

Hello Jacob,

If you are using groovy with scriptrunner you can always get parent issue like this

def parent = issue.getParentObject();

after that you can get value of custom field with

def cfValue = parent.getCustomFieldValue()

 If you would have any questions please let me know :)

Jacob francois October 11, 2018

how would I adjust to code to check if "adobe" was selected in "Software"

Jacob francois October 11, 2018

Screen Shot 2018-10-11 at 11.32.43 AM.png

Maciej Olszewski October 12, 2018
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.component.ComponentAccessor

def parent = issue.getParentObject()
def cfValue = parent.getCustomFieldValue(ComponentAccessor.customFieldManager.getCustomFieldObjectByName("xxx"))

this will return you value of custom field from parent :)

Jacob francois October 12, 2018

thats great but how do i create a condition with that value. 

 

I am looking for strip runner to send an email if the  

 

CfValue is equaled to a certain value. 

TAGS
AUG Leaders

Atlassian Community Events