Forums

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

JIRA Workflow Checklist

Shahidul Hoque
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 1, 2019

Hi, 

 

I am trying to put something mandatory for each story. It will be a word file that the development will be completed and will attach to the story before moving to the QA. I want to make sure that the developer will complete it as MANDATORY and can't move to the QA without completing this stage. 

Is there any rule in JIRA that can assist me in this regard?

 

Thanks

Shahidul 

1 answer

0 votes
Daniel Deng
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.
July 1, 2019

Hi Shahidul

I don't think it can be done through Jira out of box. However, some plugins support this kind of function. I will recommend to use ScriptRunner.

Try to add a Condition in your state transition from Dev to QA

Select Script Condition [ScriptRunner], you have to install ScriptRunner to have this option.

Select Simple scripted condition and add below script

import com.atlassian.jira.component.ComponentAccessor
ComponentAccessor.attachmentManager.getAttachments(issue).any{it.filename.contains('filename')}

In that case you have to attached a file with name = "filename" before you can move to QA state.

Suggest an answer

Log in or Sign up to answer