Skip to content

SonarSource/gh-action_jira-create

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gh-action_jira-create

GitHub Release Quality Gate Status .github/workflows/it-test.yml

Create Jira ticket

Note This is a wrapper for GitHub action atlassian/gajira-create with some extra features such as Markdown support for issue description.

Usage

Create a simple Jira issue using Markdown

steps:
  - uses: SonarSource/gh-action_jira-create@0.0.1 <--- replace with the last tag
    with:
      project: <Jira project key>
      issuetype: <Task, ...>
      summary: "Summary"
      description: "**some** description"

Create a Jira issue with extra fields

steps:
  - uses: SonarSource/gh-action_jira-create@0.0.1 <--- replace with the last tag
    with:
      project: <Jira project key>
      issuetype: <Task, ...>
      summary: "Summary"
      description: "**some** description"
      fields: |
        {
          "priority": {"name": "Normal"}
        }

Inputs

Input name Description Required
project Specify Jira project key yes
issuetype Jira issue type (i.e: Task) yes
summary Summary (= title) of the Jira issue yes
description Description of the Jira issue (Markdown is supported) no
fields Allow to define some extra fields such as priority no

Outputs

Input name Description
issue Issue identifier (i.e: JIRA-42)

Versioning

This project is using Semantic Versioning.

The master branch shall not be referenced by end-users. Please use tags instead and Renovate or Dependabot to stay up to date.

Contribute

Contributions are welcome, please have a look at DEV.md

About

Wrapper for github action atlassian/gajira-create

Resources

License

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors