JIRA Automation Plugin, the Edit Fields screen mentions
Where can I get a full list of these variables? This looks to be very handy.
We are inserting the whole issue
object into the Velocity renderer. Most of built-in fields should work (such as priority
etc). You may be able to use similar variables as in email templates. Even branching is possible, same as in other Velocity files.
@Matej Konecny
Thank you for the response.
I'm not a programmer, but I think I the two "objects" that JIRA Automation Plugin sets are issue and custom fields (basically, those are additional fields for issues, in addition to the built-in fields).
EditIssueAction.java Excerpt:
context.put("issue", issue); context.put("customfields", new CustomFieldValueRetriever(customFieldManager, issue));
Are these the places to find the built-in fields?
What is branching? Is that like $issue.reporter? In fact, what I am trying to do is get to a reporter's group, or a reporter's custom properties. I will post that question separately. Thanks again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The issue
object is passed as a GenericValue (GV) and Velocity uses public Getters to derive appropriate method similar to the logic here:
issue.getSummary() -> $issue.summary issue.getPriority().getName() -> $issue.priority.name (I think, never tested)
Basically, object of type https://docs.atlassian.com/jira/latest/com/atlassian/jira/issue/MutableIssue.html is passed, so in theory all methods starting with get
* should work.
You can use standard Velocity formatting template, look at this:
customfield_14080=#if($customfields.get(14080) == 'Urgency 5')13080#elseif($customfields.get(14080) == 'Urgency 4')13081#elseif($customfields.get(14080) == 'Urgency 3')13082#elseif($customfields.get(14080) == 'Urgency 2')13083#end
Make sure it's on one line though
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.