1.1.1 • Published 2 years ago

semantic-release-jira-lister v1.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
2 years ago

semantic-release-jira-lister

semantic-release plugin to create a file extracting the Jira ticket numbers from the commit messages. The expected commit message format:

feat: [TEST-345] Added yet another page
[TEST-234] Minor change to another page
[TEST-234] Added another page
TEST-123 Added new page

The jira-list file's content would be TEST-345,TEST-234,TEST-123

https://www.npmjs.com/package/semantic-release-jira-lister


StepDescription
verifyConditionsDoes nothing now.
prepareCreating a file 'jira-list' in local project directory.

Install

$ npm install semantic-release-jira-lister -D

Usage

{
  "plugins": [
    "@semantic-release/commit-analyzer",
    "@semantic-release/release-notes-generator",    
    "semantic-release-jira-lister"
  ]
}

With this example, for each release, a 'jira-list' file will be created or updated.