Hello there,
I've written following 2 scripts for updating the Issue Security Level for issues (specially Sub-tasks only) which are not working properly when executing from Add-on->Script Console section.
Script-1
import com.atlassian.jira.bc.issue.IssueService;
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.issue.IssueInputParameters;
import com.atlassian.jira.user.ApplicationUser;
import com.atlassian.jira.event.type.EventDispatchOption;
import com.atlassian.jira.issue.IssueManager;
def issueManager = ComponentAccessor.getIssueManager()
ApplicationUser loggedInUser = ComponentAccessor.getUserManager().getUserByName("no-reply");
IssueService is = ComponentAccessor.getIssueService();
String iKey = "JIRA-10";
Issue oldIssue = is.getIssue(loggedInUser, iKey).getIssue();
long id = 10104;
oldIssue.setSecurityLevelId(id);
issueManager.updateIssue(oldIssue.getProjectObject().getProjectLead(), oldIssue, EventDispatchOption.ISSUE_UPDATED, false)
Script-2
import com.atlassian.jira.bc.issue.IssueService;
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.issue.IssueInputParameters;
import com.atlassian.jira.user.ApplicationUser;
ApplicationUser loggedInUser = ComponentAccessor.getUserManager().getUserByName("no-reply");
IssueService is = ComponentAccessor.getIssueService();
String iKey = "JIRA-10";
Issue oldIssue = is.getIssue(loggedInUser, iKey).getIssue();
IssueInputParameters issueInputParameters = is.newIssueInputParameters();
long id= 10104;
issueInputParameters.setSecurityLevelId(id);
IssueService.UpdateValidationResult result = is.validateUpdate(oldIssue.getProjectObject().getProjectLead(), oldIssue.getId(),issueInputParameters);
if (result.getErrorCollection().hasAnyErrors()) {
log.error("could not update security level:" + result.getErrorCollection().getErrorMessages().toString());
} else {
is.update(oldIssue.getProjectObject().getProjectLead(), result).getIssue();
log.info("Issue security level updated for " + iKey + " security level id: 10104");
}
In the second script, no error logs are traced. It shows that the issue has been updated successfully.
Sometimes, it updates issues (even though the issue key has not provided yet in the script) and sometimes it does nothing.
Any help will be appreciated.
Updates: When used in Post function, both scripts runs perfectly.
There is a built-in script for setting the security level, which lets you just specify the security level and the condition for when it should do so, it should make it easier: https://jamieechlin.atlassian.net/wiki/display/GRV/Built-In+Scripts#Built-InScripts-SetIssueSecurity
Thanks @Danyal Iqbal, but both the scripts runs perfectly when it is used in Post function as I mentioned earlier. Just need to use issue object as is instead of finding it out by it's key. But in my current scenario, I can not execute it from PF hence executing through Script Console.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.