Latest Dynatrace
The following workflow actions are available for Jira for Workflows .
Change the assignee of a Jira Issue.
XYZ-1234
. You can also use workflow expressions as input.Comment on a Jira issue.
XYZ-1234
. You can also use workflow expressions as input.The Comment on issue action provides the following result:
Property
Description
id
The numeric ID of the comment, for example, 123456
.
This result can be used as inputs for other Workflow actions via workflow expressions.
Create a new Jira issue with various fields.
The Create Issue action provides the following result:
Property
Description
id
The numeric ID of the newly created Jira issue, for example, 1234567
.
key
The Jira issue key of the newly created Jira issue, for example, XYZ-1234
.
url
A URL that links to the newly created Jira issue, for example, https://<your-jira-instance>.atlassian.net/browse/XYZ-1234
.
This result can be used as inputs for other workflow actions via workflow expressions.
Execute JQL queries to fetch issues from Jira.
PROJECT = CA AND assignee = null
.names, renderedFields
.10
.3By default, only navigable (*navigable) fields are returned in this search resource. The default are all fields (*all).
Examples for filters: Examples for filters: *all - include all fields; *navigable - include just navigable fields; summary,comment - include just the summary and comments; -description - include navigable fields except the description (the default is *navigable for search); *all,-comment - include everything except comments
Number of issues returned by one query will be truncated to 1000. Be aware that action might fail if result is too large.
The syntax for custom field values depends on the custom field type. For more information, see Jira documentation for Setting custom field data for other field types.
Examples:
Key
Value
FreeTextField
"customfield_10004": "Free text goes here. Type away!"
GroupPicker
"customfield_10005": { "name": "jira-developers" }
MultiSelect
"customfield_10008": [ {"value": "red" }, {"value": "blue" }, {"value": "green" }]
NumberField
"customfield_10010": 42.07
The Detail tab shows the State of the operation:
Success
if the JQL search operation passedFailed
(with more information) if the search failedThe Result tab lists all the records from the search (if the search was successful).
Link two Jira issues.
Transition the Jira issue's state.
XYZ-1234
.The syntax for custom field values depends on the custom field type. For more information, see Jira documentation for Setting custom field data for other field types.
Examples:
Key
Value
FreeTextField
"customfield_10004": "Free text goes here. Type away!"
GroupPicker
"customfield_10005": { "name": "jira-developers" }
MultiSelect
"customfield_10008": [ {"value": "red" }, {"value": "blue" }, {"value": "green" }]
NumberField
"customfield_10010": 42.07
The Transition issue action currently provides no results, but the Input tab shows all IDs associated with the transition and the logs provide some information.
The Detail tab shows the State of the operation:
Success
if the transition operation passedFailed
(with more information) if the transition failed