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,555,532
Community Members
 
Community Events
184
Community Groups

script for Jira cloud (JMWE)

Hi,

I need small help that I'm trying to implement a scripted condition on a transition but I couldn't achieve.
When Reporter = Assignee the transition button should not appear for this I need a small script for JIRA CLOUD.

I have tried below script but i'm getting errors

def ca=ComponentAccessor
def gm=ca.getGroupManager()
issue.getReporter() != issue.get("assignee")

can you please check and support me to run this rule

1 comment

David Fischer _Appfire_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 12, 2021

Hi @Hari Shankar 

on the Cloud, you don't use Groovy but Atlassian's Jira Expressions language. For your requirement, you can create a Build-your-own Condition with this code:

issue.assignee != issue.reporter

Comment

Log in or Sign up to comment