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
}
}
}
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(.*)")}
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.