8

We have a JIRA setup, integrated with Crucible/Fisheye, and with a workflow step called "Under Code Review". Right now developers create a code review, and that's linked to the JIRA ticket appropriately, via the "Source" and "Reviews" tabs. This is great.

Is there a way to configure JIRA so that it automatically puts the ticket into the "Under Code Review" step once a Crucible review is associated with the ticket?

Jordan Dea-Mattson
  • 5,791
  • 5
  • 38
  • 53
Valdis R
  • 2,095
  • 1
  • 18
  • 36
  • +1 - I'd love to be able to do this. – gareth_bowles Mar 16 '11 at 01:13
  • 1
    A few things that I've learned: (1) Listeners don't work. There is no callback. (2) the JIRA Fisheye Plugin queries Fisheye/Crucible upon access to the ticket and Source/Review tab. It appears that this isn't possible, but I'm leaving this open in case. – Valdis R May 02 '11 at 21:01

2 Answers2

2

Answer on the Atlassian Answers site (https://answers.atlassian.com/questions/2991/can-a-ticket-be-moved-through-a-jira-workflow-when-creating-a-crucible-review). A new plugin has been created for JIRA v4.3+. See the Crucible Review-Issue Transitions Plugin

Valdis R
  • 2,095
  • 1
  • 18
  • 36
1

You should be able to create a Listener to "watch" for posted reviews and execute the workflow transition if one is found.

Justin
  • 597
  • 4
  • 7
  • Is there something out of the box that does this? For that matter, are you sure that an event is fired when a review is posted? – Valdis R Mar 30 '11 at 01:47
  • I've added the base DebugListener and I don't see any events fired to the Listener when I create or summarize a review. – Valdis R Apr 05 '11 at 16:32