Versions Compared

Key

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

...

For example, if you configure the following JQL query in a configuration screen of JSU:

Configuration in JSU

...

parent

...

=

...

{issue.Parent}

...

AND

...

component

...

!=

...

{issue.Component/s}

...

OR

...

component

...

is

...

EMPTY

...

it will be converted by JSU before the search is executed similar to the following:

Values after replacement

...

parent

...

=

...

'ABC-123'

...

AND

...

component

...

!=

...

'Documentation'

...

OR

...

component

...

is

...

EMPTY

...

This will search all sibling issues (same parent), which do not have the same component as the current issue (in this example Documentation).

...

Add the following to your JQL query:

...

...

...

AND

...

key

...

=

...

{issue.key}

Fields on the parent issue

Add the following to your JQL query:

...

...

...

AND

...

key

...

=

...

{issue.parent}

Fields on all sibling issues (other sub-tasks of the same parent issue)

Add the following to your JQL query:

...

...

...

AND

...

parent

...

=

...

{issue.parent}

...

AND

...

key

...

!=

...

{issue.key}

  • sub-tasks with the same parent: parent = {issue.parent}

  • excluding the current issue: key != {issue.key}

...

The replaceable value from the issue must be between curly brackets:

...

{issue.FIELD

...

NAME}

System fields

Use the place holders from the following list:

...