I need to find a ticket where important information was added to the issue (probably comment section) within a certain time period. So far I've tried queries including the blocks "issue in issueHistory()" and "Date1" BEFORE "Date2"". What I'm struggling with is the part that defines that any changes were made by person xyz. Any ideas or alterantive approaches?
I'm not sure if it's possible with JQL, so I can suggest two alternative solutions that can work for your case.
1. Activity Stream Gadget on Jira dashboard. You can select the person who made changes (Account ID), dates, and some activities (e.g., comments added). How to configure Activity Stream Gadget for Jira
2. Issue History for Jira app. It offers more flexible filters and a customizable table view. You can add any standard or custom field to track its activity in a separate column.
*The app is developed by my team.
you could try something like:
issuekey IN updatedBy("username") AND assignee = username AND updated >= startOfDay("-7") ORDER BY updatedDate DESC
to find updated issues from the past week.
If you need a certain period you could go for:
issuekey IN updatedBy("username") AND assignee = username AND updated >= 2023-01-01 AND updated <= 2023-12-31 ORDER BY updatedDate DESC
Best,
Lars
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.