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.
How to delete subtasks with specific condition on jira version 8.14.0 by transition
You could write a post-function script that checks your conditions and deletes the relecant sub-tasks, but I would very strongly recommend that you do not automate this.
Deleted issues are gone, utterly destroyed, you have no record that they were even there, let alone what they were for.
This makes a nonsense of a tracking system, and with an automation, it means you're destroying information without human oversight.
You would need an app like ScriptRunner for Jira or Automation for doing that.
In case you already have ScriptRunner you can write script to check for specific conditions and use a code like this below to delete the issue.
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.event.type.EventDispatchOption
import com.atlassian.jira.issue.IssueManager
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.user.ApplicationUser
IssueManager im = ComponentAccessor.getIssueManager()
def issue = im.getIssueObject("SCRUM-25") as MutableIssue
ApplicationUser user = ComponentAccessor.getUserManager().getUserByName("admin")
im.deleteIssue(user, issue, EventDispatchOption.ISSUE_DELETED, false)
I hope it helps.
Ravi
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.