Query for all tickets that have a fisheye commit associated to them.

Sebastien Paquette November 27, 2012

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?

1 answer

1 vote
Felipe Kraemer
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
December 2, 2012

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

Suggest an answer

Log in or Sign up to answer