library
turbot/jira
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Adds Comment

Adds a comment to an issue.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run jira.pipeline.add_comment \
--arg 'issue_id=<string>' \
--arg 'comment_text=<string>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = jira.pipeline.add_comment
args = {
issue_id = <string>
comment_text = <string>
}
}

Params

NameTypeRequiredDescriptionDefault
conn
connection.jira
YesName of Jira connection to use. If not provided, the default Jira connection will be used.connection.jira.default
issue_id
string
YesIssue ID.-
comment_text
string
YesIssue comment.-

Outputs

NameDescription
statusDetails about the issue comment.