library
turbot/jira
Get Involved
Version
Pipeline: Update Issue
Update fields of an existing issue.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run jira.pipeline.update_issue \ --arg 'issue_id=<string>' \ --arg 'summary=<string>'
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = jira.pipeline.update_issue args = { issue_id = <string> summary = <string> }}
Params
Name | Type | Required | Description | Default |
---|---|---|---|---|
conn | connection.jira | Yes | Name of Jira connection to use. If not provided, the default Jira connection will be used. | connection.jira.default |
issue_id | string | Yes | Issue ID. | - |
summary | string | Yes | Issue summary. | - |
description | string | No | Issue description. | - |
priority | string | No | Issue priority. | - |
assignee_id | string | No | Assignee id. | - |
Outputs
This pipeline has no outputs.
Tags
recommended = true