createcomment
Comment on a Jira ticket based on a workflow execution status.
Comment on a Jira ticket based on a workflow execution status.
Comment on a Jira ticket based on a workflow execution status.
type: "io.kestra.plugin.jira.issues.createcomment"Examples
Comment on a jira ticket on a failed flow execution.
id: jira_flow
namespace: company.myteam
tasks:
- id: create_comment_on_a_ticket
type: io.kestra.plugin.jira.issues.CreateComment
baseUrl: your-domain.atlassian.net
username: [email protected]
password: "{{ secret('jira_api_token') }}"
projectKey: project_key
issueIdOrKey: "TID-53"
body: "This ticket is not moving, do we need to outsource this!"
Properties
baseUrl*Requiredstring
1Atlassian URL
body*Requiredstring
1The comment's content
issueIdOrKey*Requiredstring
1Jira ticket key
projectKey*Requiredstring
1Atlassian project's key
accessTokenstring
Atlassian OAuth access token
(Required for OAuth authorization)
descriptionstring
Description of the ticket to be created
issueTypeIdstring
Issue type ID of the Jira ticket
The issue type ID can be found using this URL : https://your-domain.atlassian.net/rest/api/2/issue/createmeta.
labelsarray
Labels associated with opened ticket
optionsNon-dynamic
The HTTP client configuration.
io.kestra.core.http.client.configurations.HttpConfiguration
falseIf true, allow a failed response code (response code >= 400)
List of response code allowed for this request
The authentification to use.
io.kestra.core.http.client.configurations.BasicAuthConfiguration
The password for HTTP basic authentication.
The username for HTTP basic authentication.
io.kestra.core.http.client.configurations.BearerAuthConfiguration
The token for bearer token authentication.
The password for HTTP basic authentication. Deprecated, use auth property with a BasicAuthConfiguration instance instead.
The username for HTTP basic authentication. Deprecated, use auth property with a BasicAuthConfiguration instance instead.
durationdurationThe time an idle connection can remain in the client's connection pool before being closed.
UTF-8The default charset for the request.
java.nio.charset.Charset
trueWhether redirects should be followed automatically.
ALLTRACEDEBUGINFOWARNERROROFFNOT_SPECIFIEDThe log level for the HTTP client.
REQUEST_HEADERSREQUEST_BODYRESPONSE_HEADERSRESPONSE_BODYThe enabled log.
The maximum content length of the response.
The proxy configuration.
io.kestra.core.http.client.configurations.ProxyConfiguration
DIRECTDIRECTHTTPSOCKSThe address of the proxy server.
The password for proxy authentication.
The port of the proxy server.
DIRECTHTTPSOCKSThe type of proxy to use.
The username for proxy authentication.
durationdurationThe maximum time allowed for reading data from the server before failing.
The SSL request options
io.kestra.core.http.client.configurations.SslOptions
Whether to disable checking of the remote SSL certificate.
Only applies if no trust store is configured. Note: This makes the SSL connection insecure and should only be used for testing. If you are using a self-signed certificate, set up a trust store instead.
The timeout configuration.
io.kestra.core.http.client.configurations.TimeoutConfiguration
durationThe time allowed to establish a connection to the server before failing.
PT5MdurationThe time allowed for a read connection to remain idle before closing it.
passwordstring
Atlassian password or API token
payloadstring
Payload
summarystring
Summary of the ticket
usernamestring
Atlassian Username
(Required for basic & API token authorization)