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
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.