Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
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

Creating SubTasks when Parent task is created - JIRA Automation

Edited

I have written an automation rule where we create 10 different child issues and assign to different departments when parent issue is created. I am getting an error while creating child issues where the summary exceeded 255 characters limit. For creating child issues I am appending 10 different categories names to the end of the "SUMMARY field".

Example - The summary for each child issue are appended with the {{ Summary of Parent issue+ department name }}. 

JIRA_Issue.jpgJIRA_Issue_2.jpg

 

 

If the summary field has exceeded 255 characters limit then the child issue is not created, where as the parent issue is created.

I have attached the screen of the audit log and the automation rule. 

Is it possible to validate the length of the summary and truncate it to 255.

Thanks & Regards,

Muru.

1 comment

Kevin Bui
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Apr 06, 2022

Hi Muru,

The 255 character limit is a Jira-wide restriction, so unfortunately we can't really work around it.

However, you can truncate it to 255 characters using the smart value {{issue.summary.abbreviate(255)}}.

For example, if your issue summary was Hello world, then {{issue.summary.abbreviate(8)}} would return Hello Wo...

 

Hope that helps!

Comment

Log in or Sign up to comment