Table of Contents |
---|
1. Introduction
Required Jira Role:
Status | ||||
---|---|---|---|---|
|
Dive into the enhanced functionalities of Jira Cloud's Advanced Issue Selector. This guide walks you through the various ways you can integrate and automate tasks using the Advanced Issue Selector.
Owner: [Your Name] Last Modified: [Your Update Date
2. Integrating Issue Keys with Advanced Issue Selector
Required Jira Role:
Status | ||||
---|---|---|---|---|
|
2.1 To associate specific issue keys with the Advanced Issue Selector, follow the steps below:
For a singular issue, use the following format:
Code Block language none { "fields": { "customfield_XYZ": ["ABC-1"] } }
For multiple issues simultaneously:
Code Block { "fields": { "customfield_XYZ": ["ABC-1", "ABC-2"] } }
2.2 Augmenting Selected Issues
If you wish to include an additional issue without replacing the current selections in the Advanced Issue Selector, use:
Code Block |
---|
{ "fields": { "customfield_XYZ": [{#customfield_XYZ}"{.}",{/}"ABC-100"] } } |
2.3 Transferring Selections Between Fields:
To replicate selected issues from one field to another, employ the following structure:
Code Block |
---|
{ "fields": { "customfield_XYZ": [{#customfield_ABC}"{.}"{^end},{/}{/}] } } |
3. Utilizing Attributes from Selected Issues:
Required Jira Role:
Status | ||||
---|---|---|---|---|
|
For single-issue selections in the Advanced Issue Selector, you can adapt the issue’s attributes. For instance, to modify the assignee based on the current selection:
...