Create a Jira issue
step
Creates a new Jira issue.
Specification
connection
Optional
A Relay Jira connection to useConnection docs
${connections.jira.my-jira-connection}
issue
Required
object
A mapping of the issue values
issue.
fields
Required
object
A mapping of the issue fields
issue.fields.
summary
Required
string
A summary of the issue
issue.fields.
description
Optional
string
A description of the issue
issue.fields.
type
Required
object
A mapping containing the name of the issue type
issue.fields.type.
name
Required
string
The name of an issue type, such as Story or Bug
issue.fields.
assignee
Optional
object
A mapping containing the name of the assignee
issue.fields.assignee.
name
Optional
string
The name of an assignee within jira
issue.fields.
project
Required
object
A mapping containing the issue project key
issue.fields.project.
key
Required
string
The project key for the new issue, such as OPS
issue.
customFields
Optional
object
An arbitrary mapping of any custom field keys and values
Outputs
issue
Required
string
The key of the issue that was created.
jira-step-issue-create
The Jira issue create step container creates a Jira ticket.
Example step configuration
name: create-jira-issue
image: relaysh/jira-step-issue-create
spec:
connection: !Connection { type: jira, name: jira-bot }
issue:
fields:
project:
key: !Parameter jiraProjectKey
type:
name: Task
summary: !Parameter issueTitle
description: !Fn.convertMarkdown [ jira, !Parameter issueBody ]