Excerpt |
---|
A workflow condition that allows you to hide/show a particular transition from the list of available transitions based on issues related to the |
current issue. It can be used to test the existence of certain related issues (such as linked issues, Stories of an Epic, Epic of a Story, subtasks of an issue, issues returned by a Groovy script or a JQL search, etc.). The transition to which the condition is added will be available only if the |
related issues respect certain conditions. |
Note |
---|
|
To add '
Related Issues Condition' to a transition:
Click
Edit
for the workflow that has the transition you wish to configure the condition on.
In the Workflow Designer, select the transition.
Click on
Conditions
Conditions
in the properties panel.Click on
Add
condition.Select
Linked Issue(s) Condition
Related Issues Condition
from the list of conditions.Click on
Add
to add the condition to the transition.
Select the
Issue Link
drop-down, or leave it as Any
for any link type other than Issue/Subtask, Epic/Story and Jira Portfolio hierarchy.related issues from
Which issue(s)
drop-downSelect the minimum number of
related issues required from the
Min.
Related Issues
field.
Click on
Add
to add the condition to the transition.
Panel |
---|
Related links : |
When you add this condition to a transition,the the add-on checks the number of issues of specified type, linked to the current issue checks the related issues, against the number of issues entered in the the Min. Linked Related Issues
field field.You You can further customize the condition using the following options:
What to validate
Require
issue links with a specific link type or set of constraints: Hides the transition if issue links of specified link type andcertain related issues: The transition is hidden if related issues respecting the constraints
configuredbelow do not exist.
Check
existing issue links: Hides the transition if existing linked issues of the specified link typerelated issues: The transition is hidden if the specified related issues do not respect the
constraints configured.Max. Linked Issues
Select the maximum number of linked issues to be acceptedprovided constraints.
Target Issues
Select the issues to check the constraints on. They can be:
Linked issues: Select issue(s) linked to the current issue through any link type or a specific link type such as
blocks
,is cloned by
, etc.Sub-tasks of the current issue: Select this option to operate on the sub-tasks of the current issue
Parent issue of the current sub-task: Select this option to operate on the parent of the current issue
Issues that belong to the current Epic: Select this option to operate on the issues that belong to the current Epic
Epic of the current issue: Select this option to operate on the Epic of the current issue
Child issues of the current issue in the Portfolio hierarchy: Select this option to operate on the child issues of the current issue in the Portfolio hierarchy
Parent issue of the current issue in the Portfolio hierarchy: Select this option to operate on the parent issue of the current issue in the Portfolio hierarchy
Issues returned by a Groovy script: Input a Groovy script that returns either a single Issue object, or a Collection of Issue objects, or a String representing the key of an issue, or a Collection of Strings each representing an issue key. For example:
"TEST-1"
["TEST-1","TEST-2"]
ComponentAccessor.issueManager.getIssueObject("TEST-1")
[ComponentAccessor.issueManager.getIssueObject("TEST-1"),ComponentAccessor.issueManager.getIssueObject("TEST-2")]
issue.parentObject
issue.getLinkedIssues()
Issues returned by a JQL search: Input a JQL search expression, including an optional Groovy Template markup. For example:
project = TEST
returns issues of the project with the key TESTproject = ${issue.get("project").key} and assignee = ${currentUser.name}
returns issues of the project the current issue belongs to and assigned to the current user.To operate on issues of a project with key
TEST
and issue type name same as the value in a text fieldCode Block <% if (issue.get("Single line text")) { %> project = TEST and issuetype = ${issue.get("Single line text")} <% } else { %> issuekey=INVALID-1 <% } %>
Note |
---|
|
Issue constraints
Min. Related Issues
Select the minimum number of related issues to enforce. By default, it is 1.
Max. Related Issues
Select the maximum number of related issues beyond which the condition will fail. Leave it blank for no limit.
Condition on
linkedrelated issues
Input
aa Groovy condition in
this fieldthis field to check on each
linkedrelated issue.
LeaveLeave blank if you don't need any additional constraint on the
linkedtarget issues. See the Groovy help editor for more information on writing the Groovy condition.
All
linkedrelated issues must verify the condition above
By default, this option is checked and the Groovy condition written above is checked on each
linkedrelated issue of the current issue.
IfIf you uncheck this option, at least one
linkedrelated issue, instead of all, must verify the condition.