Link issues to the current issue
A post-function that will link the current issue to all issues that satisfy a parameterized JQL query.
To add 'Link issues to the current issue' post-function to a transition:
Click Edit for the workflow that has the transition you wish to add the post-function on.
In the Workflow Designer, select the transition.
Click Post Functions in the properties panel (or select the Post Functions tab).
Click Add post function.
Select Link issues to the current issue from the list of post-functions.
Click Add. The Link issue fields to the current issue screen will open, where you can configure the post function as needed. See below for more details on specific configurations.
JMWE shows an error message on the issue view if any error occurs during the execution of the post-function. This message is displayed only if the current user is a Jira administrator.
When you add this post-function to a transition and trigger it, the add-on links the current issue to the specified number of issues that satisfy the specified parameterized JQL query.
Issues to link
JQL Filter - Input a JQL expression that returns the issues to link to the current issue. You can insert issue, transition, currentUser and now variables in your JQL expression and test it using the JQL expression tester provided in this post-function.
Examples:
project = TEST
returns the issues of the project whose key is TESTassignee is EMPTY
returns all the unassigned issues.project=TEST order by created desc
returns the issues of the project whose key isTEST
in descending order byCreated
time
To specify a condition on a user, you need to specify an accountId without the accountId: prefix. For example: assignee = 557058:472c64c9-2567-4213-839b-86bf21558300
. You can access the prefix-less accountId of a user through the _accountId
property.
Note: If the current issue satisfies the specified JQL query, an error is logged because you cannot link an issue with itself.
Examples:
project = {{ issue.fields.project.key }} and assignee = {{currentUser._accountId}}