The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

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

SMAtlassianMber
Contributor
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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
SMAtlassianMber
Contributor
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_
Contributor
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
Contributor
April 16, 2021

We tested that out, no problems running the jql. 

TAGS
AUG Leaders

Atlassian Community Events