You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.