library
turbot/jira
OverviewPipelines
0
Triggers
0
Variables
GitHub

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

NameTypeRequiredDescriptionDefault
credstringYesThe credentials to use for authenticating with Jira.default
project_keystringYesThe key identifying the Jira project.-
issue_typestringYesIssue type.-
summarystringYesIssue summary.-
descriptionstringNoIssue description.-
prioritystringNoIssue priority.-
assignee_idstringNoAssignee id.-

Outputs

NameDescription
issueDetails about the issue.

Tags

type = featured