library
turbot/jira
Get Involved
Version
Pipeline: Create Issue
Create a new issue in a Jira project.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run jira.pipeline.create_issue \  --arg 'project_key=<string>' \  --arg 'issue_type=<string>' \  --arg 'summary=<string>'Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" {  pipeline = jira.pipeline.create_issue    args = {    project_key = <string>    issue_type = <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 | 
| project_key | string | Yes | The key identifying the Jira project. | - | 
| issue_type | string | Yes | Issue type. | - | 
| summary | string | Yes | Issue summary. | - | 
| description | string | No | Issue description. | - | 
| priority | string | No | Issue priority. | - | 
| assignee_id | string | No | Assignee id. | - | 
Outputs
| Name | Description | 
|---|---|
| issue | Details about the issue. | 
Tags
recommended = true