Snippets

Adaptavist Jira Cloud Set Fix Versions PostFunction

Updated by Kristian Walker

File snippet.groovy Added

  • Ignore whitespace
  • Hide word diff
+/*
+* This example post fucntion updates the  fix versions field on an issue.
+* "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." 
+*/
+
+// Get the issue key
+def issueKey = issue.key
+
+// Update the issue and add versions to it.
+def result = put("/rest/api/2/issue/${issueKey}")
+        .header('Content-Type', 'application/json')
+        .body([
+        fields: [
+                fixVersions : [ // Initialise the  array
+                               [ //name of each component object
+                                 name: "<Version Name Here>",
+                               ],
+                               [
+                                       name: "<Version Name Here>",
+                               ]
+                ]
+        ]
+])
+        .asString()

File snippet.txt Deleted

  • Ignore whitespace
  • Hide word diff
-/*
-* This example post fucntion updates the  fix versions field on an issue.
-* "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." 
-*/
-
-// Get the issue key
-def issueKey = issue.key
-
-// Update the issue and add versions to it.
-def result = put("/rest/api/2/issue/${issueKey}")
-        .header('Content-Type', 'application/json')
-        .body([
-        fields: [
-                fixVersions : [ // Initialise the  array
-                               [ //name of each component object
-                                 name: "<Version Name Here>",
-                               ],
-                               [
-                                       name: "<Version Name Here>",
-                               ]
-                ]
-        ]
-])
-        .asString()
Updated by Kristian Walker

File snippet.txt Modified

  • Ignore whitespace
  • Hide word diff
         fields: [
                 fixVersions : [ // Initialise the  array
                                [ //name of each component object
-                                 name: "Version 3.0",
+                                 name: "<Version Name Here>",
                                ],
                                [
-                                       name: "version1",
+                                       name: "<Version Name Here>",
                                ]
                 ]
         ]
Updated by Kristian Walker

File snippet.txt Modified

  • Ignore whitespace
  • Hide word diff
 /*
-* This example post fucntion updates the versions on an issue
-*  * "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
+* This example post fucntion updates the  fix versions field on an issue.
+* "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." 
 */
Created by Kristian Walker

File snippet.txt Added

  • Ignore whitespace
  • Hide word diff
+/*
+* This example post fucntion updates the versions on an issue
+*  * "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." 
+*/
+
+// Get the issue key
+def issueKey = issue.key
+
+// Update the issue and add versions to it.
+def result = put("/rest/api/2/issue/${issueKey}")
+        .header('Content-Type', 'application/json')
+        .body([
+        fields: [
+                fixVersions : [ // Initialise the  array
+                               [ //name of each component object
+                                 name: "Version 3.0",
+                               ],
+                               [
+                                       name: "version1",
+                               ]
+                ]
+        ]
+])
+        .asString()
HTTPS SSH

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