Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JIRA Kanban - Create Issue

Kindle Scott May 10, 2019

Hello,

My team recently migrated from JIRA Scrum Project to JIRA Kanban Project.  At the "Create Issue" level is there a way to move a user story into "Selected for Development" instead of it automatically defaulting to the backlog? 

Thanks,

Kindle

2 answers

0 votes
Kindle Scott May 13, 2019

Hi, thanks for the feedback.  I was thinking I would need some help from an automation app.  I have an open ticket with scriptrunner.  Thanks again!

-Kindle

0 votes
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 10, 2019

Hello,

You should modify the workflow for the issue type. the first status should be Selected for Development.

If you want some tickets to move to backlog and some to selected for development, then you would need an app for it.

There are multiple apps available: Power Scripts, ScriptRunner, Automation for Jira, Jira Service Desk and so on.

If you want to use the Power Scripts app, then you could add a post function with a code like this:

if(your custom logic == true) {
  autotransition("Selected for Development", key);

}

Suggest an answer

Log in or Sign up to answer