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,637,616
Community Members
 
Community Events
196
Community Groups

Delete subtasks in scrip runner through post-function or automation

How to delete subtasks with specific condition on jira version 8.14.0 by transition

2 answers

2 accepted

1 vote
Answer accepted
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Dec 30, 2020

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.

0 votes
Answer accepted
Ravi Sagar _Sparxsys_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Dec 30, 2020

Hi @Nouf.Alshabanat 

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

should i add a function for reindex?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events