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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,557,844
Community Members
 
Community Events
184
Community Groups

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

Edited

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

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(.*)")} 

@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

We tested that out, no problems running the jql. 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events