I have created a simple board via Jira Service Desk consisting of the workflow of a product being manufactured. After my issue is resolved (in this case delivered), I'd want the issue to automatically delete itself (or remove itself from the board) after a desired period of time. How may I go about this?
Thank you.
You certainly shouldn't delete Jira issues, but it is possible to exclude them from your board.
Depending on your Jira version., you should have the following setting in the Board Configuration:
If not, then as mentioned in another answer you can exclude them using the filter query or sub-query. However, I would suggest using the Resolution field rather than the Status, and the resolution date rather than the updated date. E.g:
Project = XXX AND resolutiondate >= -14d
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi John,
Generally speaking, deleting issues aren't best practice, since they're pretty much "gone for good".
I would suggest add a status called Archived or something similar.
In servicedesk under the admin section, you should be able to set up a SLA, starting when the issue is resolved. For example and SLA of 7 days if that's the time after resolution you want the issues to be archived.
You can then set up an automation, which triggers when the Archive SLA is breached and transitions the issue from Closed/Done to Archived.
SLA documentation:
https://confluence.atlassian.com/servicedeskserver/setting-up-slas-939926373.html
Automation documentation:
https://confluence.atlassian.com/confeval/jira-service-desk-evaluator-resources/jira-service-desk-automation
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As Lenin writes, you'll of course also have to configure your board/queues to only show issues which aren't archived/closed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @John Pace
You can adjust the board's default filter to exclude issues that were resolved a week or ago.
One simple example:
NOT (updated < -7d AND status in ("Done", Closed))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.