In Crucible, I use advanced search.
I try to select all commits for a specified user that were not reviewed.
The following query:
select revisions
from dir /
where
(on branch master
or on branch release-10
)
and not reviewed
and date >=…
I have a list of JIRA issues that have one or many commits:
J1 (c11, c12, ..., c1n)
J2 (c21, c22, ..., c2m)
...
Jk (ck1, ck2, ..., cky)
where n,m,y >= 1
Using Crucible I'm trying to create reviews for J1,..., Jk (or for c11, ..., cky - because…
Inputs in Hand:-
ChangesetID (csid)
Repository Name
Branch Name
Requirement to find:
Get the JIRAISSUEKEY releated to given changesetid.
I was searching in EyeQL & FishEye REST API but couldn't find any possible ways to achieve my requirement.
Is a way to get the same value which is shown in Crucible "details" page of a review as "Branched from" value? It's branch from which was cloned branch of the review (Git). How to find it with REST API? I see only these docs and this and can't find…
I want to have an automated way to create a review in crucible between two Git tags. (I also have FishEye which allows browsing the code).
I can do it via the web by doing the following:
Create Review -> Search for files -> Advanced Search
EyeQL…