Automation for Jira

To get value out of the Linksy field in the automation rules is pretty simple.

The following format is used:

{{issue.fields.customfield_<fieldID>.issues.get(<option number>)}}

fieldID is the id of the custom field that the value will be taken from.

<option number> is the number of which value will be taken from the field:

Example:

  • Option 1

  • Option 2

  • Option 3

  • Option 4

Entering

{{issue.fields.customfield_<fieldID>.issues.get(0)}}

will get the “Option 1” from the field.

This example is also used for getting the “current” value from the field in singlepicker fields or getting the top value in the multipicker fields.