Hello:
We are going to need to implement a deletion process for JIRA tickets. I have received approval to have all JIRA tickets deleted 7 years from CLOSED date. I feel like I'm half way home with the following query but just can't get across the finish line:
status changed to Closed after -2556d
I will then implement this as an automation rule but first I need assistance in the actual JQL.
Thank you,
Scott
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you. Is there a way to make that updatedDate dynamic? I would like to have this rule run everyday.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi! you can try
status = Closed AND updatedDate <= -2555d
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.