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.
Hello community!
Is there a way to bulk rename Sub-Tasks? When I clone an Issue all cloned Sub-Tasks are created with the prefix "CLONE -" I tried to bulk edit like this but nothing happens:
Thanks
Welcome to the community.
If you go to settings > system>general configuration >advanced setting > you can change the "jira.clone.prefix" from "Clone" to something else.
In your screen it look like you are updating the label field.
You can't rename the summary using he bulk update. You can try using some script (API or addon)
Hope this helps.
Hi Mohamed,
Oh I see, so, once I have cloned several Tasks (700) I can't bulk edit his prefix without a script? Is there any script you can recommend?
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I will go with python, there is a jira module
https://jira.readthedocs.io/en/master/
I'm not a coding expert but i just test this and it's works :
from jira import JIRA
jira_cloud = JIRA(basic_auth=(login,"API token"), options={'server': 'your URL'})
issues_Jql = 'project = "your project"' #this is your JQL
my_issue = jira_cloud.search_issues(issues_Jql)
for i in my_issue:
i.update(summary = i.fields.summary[5:])
here the link to create your token for cloud :
https://confluence.atlassian.com/cloud/api-tokens-938839638.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.