It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
While using sub-tasks we want to monitor main tickets and review updates if there is at least one sub-task been upgraded.
Is there a way in JQL to build report that show main tickets with updated recently sub-tickets only?
Thank you!
Hello,
You could use Power Scripts for the task. You could create a file called jqlRecentlyUpdatedSubtasks.sil with the following code:
string [] keys = selectIssues(argv[0]);
string [] ret;
for(string k in keys) {
for (string subTaskKey in subtasks(k)) {
date recentlyUpdated = currentDate() - argv[1];
runnerLog(recentlyUpdated);
if (%subTaskKey%.updated > recentlyUpdated){
ret += subTaskKey;
}
}
}
return ret;
Let's say you want to see all tasks which subtask were update no longer than 2days ago. You would use the following JQL function
key in silJQLList("jqlRecentlyUpdatedSubtasks.sil", "project = projectKey", "1d")
You can read more about Power Scripts here
https://confluence.cprime.io/display/TR
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.