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

Script Runner - Send a custom email - Condition and Configuration for Label

SMAtlassianMber April 16, 2021

We need to create a custom email to go out for all issue collector submissions. We are trying to check for a label starting with collector. So far the condition only checks to see if there is a label or not, it will not check the label itself.

Examples we have tried the following. Any ideas? 

def lab = issue.getLabels()
if (lab){
lab.each{
String text = it
if (text.matches("collector(.*)")){
return true
}
}
}
def lab = issue.getLabels()
if (lab){
lab.each(){
if (lab.toString().matches("collector(.*)")){
return true
}
}
}

 

2 answers

Suggest an answer

Log in or Sign up to answer
1 vote
SMAtlassianMber April 27, 2021

Looks like we solved our own problem. Incase others want to try this out. The condition works.

def lab = issue.labels.any{it.label.matches("collector(.*)")} 
0 votes
Italo _Modus Create_ April 16, 2021

@SMAtlassianMber ,

I have a feeling that your issue might be the user that is running the JQL in your script doesn't have the right permissions.

See below example and there you will see how to do JQL impersonating an user.

https://scriptrunner.adaptavist.com/6.20.0/jira/recipes/misc/running-a-jql-query.html

SMAtlassianMber April 16, 2021

We tested that out, no problems running the jql. 

TAGS
AUG Leaders

Atlassian Community Events