Hi,
The QA leader asked me for a help regarding one of their projects. He would like to add a new status "In testing" after the "Rosolved" status in their jira workflow.
Currently when the Devs submit code for the QA team to review this info is sent to the default assignee and this is causing a problem because there are a large amount of sprints that are being sent and some are getting overlooked. I think he is looking for a way to have the issue placed in to a new status, called "In testing", when submitted to QA. The workflow transition to this new status would notify all members of his group instead of the default assignee. Then each QA member can choose tickets that they wish to be assigned to them.
What is the best way to implement this?
1. Configure the workflow to add the new status
https://confluence.atlassian.com/display/JIRA/Configuring+Workflow
2. Create a new Event
https://confluence.atlassian.com/display/JIRA/Adding+a+Custom+Event
3. Throw the new event in the post function of the new transition added
4. Modify notification scheme to send notifications for the new event
Nice thought with the links. I'll have to keep that in mind for next time.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Practice ;)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
35.3k karma...yeah, you have a little practice :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Haha, thanks for the Karma bump Jobin!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can't add a status to an active workflow. I suggest copying the workflow and workflow scheme, add the status to the new workflow, associate that workflow with the new scheme, and associate both with the project. You can also add a post function on the transition to the "In Testing" status that would raise a custom event, and then add a notification to the notification scheme to email the correct group (JIRA group) when the event is fired.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Correction: technically you wouldn't add a post function on the transition, you'd change the existing post function that fires "Generic Event" to fire the custom event you created.
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.