Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Rescheduling Issues

Table of Contents

Info
titleRequired plugins
You will need the following JIRA plugins:
  1. Blitz-Actions

Level: INTERMEDIATE

...

Code Block
titleAction Script
string [] fvers = getElement(argv, 1);
string newAssignee = getElement(argv, 3);
string comment = getElement(argv, 5);

fixVersions = fvers;
assignee = newAssignee;
if(isNotNull(comment)){
	addComment(key, currentUser(), comment);
}

...


That's it! You now have a powerful tool, reusable across multiple projects!