Snippets

Adaptavist ScriptRunner For Jira Cloud Modify Issue Snippets

You are viewing an old version of this snippet. View the current version.
Revised by Kristian Walker fb092b9
/*
* This example snippet provides some example conditions and additional actions code snippets that can be used with the Modify Issue post funcition provided by ScriptRunner for Jira Cloud.
* "All right, title and interest in this code snippet shall remain the exclusive intellectual property of Adaptavist Group Ltd and its affiliates. Customers with a valid ScriptRunner
* license shall be granted a  non-exclusive, non-transferable, freely revocable right to use this code snippet only within their own instance of Atlassian products. This licensing notice cannot be removed or
* amended and must be included in any circumstances where the code snippet is shared by You or a third party." 
*/

/*
* Example Conditions
*/

// specify the accountId
def reporterAccountId = "<SpecifyAccountIdHere>"
// check if the reporter user matches the spcecifed account ID
issue.fields.reporter.accountId == reporterAccountId


/*
* Example Additional Actions
*/

// Get the current issue summary
def currentSumamry = issue.fields.summary
// Update the summary
issueInput.fields.summary = "Some Extra Text -  " + currentSumamry
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.