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
Hello,
Looking for some guidance on how to do this. I need to set a field on the parent ticket as mandatory if a sub-task is created with a partial name (E.G. Pricing Sign Off). Is this possible? As of the moment, the sub-task is being created as "Pricing Sign Off - <*Client Name*>".
I used the Required Field Validator and tried the following conditions but they always return as false regardless if the Summary of the sub-task contains "Pricing Sign Off" or not:
issue.getLinkedIssues().any{it.summary == "Pricing Sign Off"}
issue.get.any{it.summary == "Pricing Sign Off"}
issue.summary.toLowerCase().contains("Pricing Sign Off")
Please help, thank you!