Community Announcements have moved! To stay up to date, please join the new Community Announcements group today. Learn more
×actually we have tired with custom fields and it got successfully updating but now my challenge is that I need to update the standard fields like Priority, description and summary like that and I just need to know how we can achieve this using script runner .
Here I'm sharing my custom filed value code so in that how we can update the standard field values and how we can updated that in issues.
please help me in that code to write the standard fields value or any other alternative way
code for custom field value update:
import com.atlassian.jira.issue.IssueManager
To set summary - issue.setSummary("XYZ")
To set description - issue.setDescription("text")
To set priority - issue.setPriorityId(priority_id)
Regards,
Seba
In which issue it will create if we updated that in jira script runner and how we can add these to some jira issue and can u help me in that please.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't understand what you want to achieve. Can you explain it more?
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.