I would like to know if there is a way in Jira I can find all jira issues in a certain status that have commits associated to them?
Hi Sebastien,
I'm not sure if this is possible from JIRA, to be honest. However, from FishEye you can use an EyeQL Search such as this:
select revisions from dir "/" where comment matches "JRA-1" or comment matches "JRA-2" order by date desc group by changeset return path, revision, author, date, csid, comment
So you can split the job in two steps:
1- In JIRA side, retrieve the list of issues that are in a certain status
2- In FishEye side, add the filter "or comment matches "<jira_issue_key>"" to the EyeQL search for each JIRA issue returned in the step above.
More search filters in FishEye can be found here.
Please let us know if this helps.
Cheers,
Felipe Kraemer
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.