I want to be able to prefill the description field of a partivular issue type - Bug
So that there are certain text in the filled that i do not need to populate on each Bug ticket.
how do i do this? I want this to happen as soon as i click the + button/ change the issue type to bug.
Thanks
Hello,
It is possible only for Jira Server /Data Center and you would need a plugin.
You could use ScriptRunner or Power Scripts.
If you want to use the Power Scripts add-on, you could create a Live Field with a code like this:
if
(argv[
"screen"
] ==
"create" and argv["issueType"] == "Bug"
) {
lfSet("description", "your description");
}
You can find more info on Live Fields here:
Hi Bimpe,
Not sure if you could do it in the past. Perhaps you mean other (custom) fields that can have a default value, but the description field cannot have one in out-of-the-box Jira.
Claudiu
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Bimpe,
Script runner plugins solves this - https://scriptrunner.adaptavist.com/latest/jira/behaviours-overview.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can also go through this thread - https://community.atlassian.com/t5/Jira-questions/How-do-I-pre-populate-text-to-a-description-field-on-JIRA-Cloud/qaq-p/456606
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.