Hello
For an epic, I would like to have the list of tasks / sub tasks who have changed to a status "TEST KO" over the duration of the project.
For example, it would return something like that
Task 1 , 05/01/2023
Task 1 , 05/04/2023
Task 1 , 05/12/2023
Task 1 , 05/25/2023
Task 2 , 05/03/2023
Task 2 , 05/27/2023
meaning that the task 1 has changed 4 times to "TEST KO", Task 2 has changed twice on those specific dates
OR something like
Task 1 , 4
Task 2 , 2
which would mean that the task 1 has been set 4 times to "TEST KO", and Task 2 twice
Thanks
Hello @Boris LINDAUER 👋
Welcome to the community!
As an alternative , I guess you can try Time in Status for Jira Cloud (developed by my SaaSJet team) with 7 types of status time reports.
For your exactly need we have Status Count report or Transition Count report
The Status Count report shows how many times an issue has been in each status.
Chart view of report:
The Transition Count report shows how many times an issue has moved between all statuses in the workflow.
Chart view of report:
Add-on has a 30-day free trial version and free up to 10 users.
Please, let me know if you have any questions
Hope it helps 😌
Valeriia
Welcome to the community !!
If you are open for a mktplace app, you can try our addon:
The add-on provides the status transition count for the complete lifecycle of the issues. There are 20+ reports in the app which help meet a variety of use cases.
Do try it out.
Disclaimer : I work for RVS, the vendor for this app
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to Atlassian Community!
You can try Status Time Reports app developed by our team. It mainly provides reports and gadgets based on how much time passed in each status.
Here is the online demo link, you can see it in action and try without installing the app. For your case, you can have a look at Status Count And Entry Dates report. Entry date(see In Development, Ready for Testing, In Testing, In Development columns.) is status transition date and status count(see #In Development, #Ready for Testing, #In Testing, #In Development columns) is how many times an issue is entered to this status.
For further details, you can have a look at Status Time Reports How to Videos.
If you are looking for a completely free solution, you can try the limited version Status Time Free.
Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
if the epic link field is present in the activity and sub activity the query is this:
issuetype in (Task, Sub-task) and "Epic Link" in ("name epic")and (status changed to "TEST KO" and status= "TEST KO")
You must insert in " name epic" the name of the epic.
if there is script runner and epic link is not present on task, the possibile query is:
issueFunction in linkedIssuesOfRecursive("issue = issueKeyEpic") and (status changed to "TEST KO" and status= "TEST KO")
I hope I have been helpful.
Kinds Regards,
Laura
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Welcome to the community
You can achieve this using the REST API and look at the history or look in the marketplace to find a plugin
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.