releaser-tools icon indicating copy to clipboard operation
releaser-tools copied to clipboard

Question - Link to JIRA issues

Open davidcunningham opened this issue 3 years ago • 0 comments

I apologize but looking through the documentation, I'm missing a connection somewhere (or if it's even possible). Right now I'm using standard-version to generate tags and changelog using JIRA as our issue tracker. This is for a monorepo that contains JS and non-JS components. Everything works great to add the links to the JIRA tickets on the commit. When I attempt to use conventional-github-releaser -p angular however it strips out the links to the the JIRA tickets. Is there a way to configure the releaser to point to a JIRA instance for tickets? An example of our .versionrc configuration is below.

{
  "issueUrlFormat": "https://jira.atlassian.net/browse/{{prefix}}{{id}}",
  "issuePrefixes": ["ABC-"],
  "types": [
    {"type": "feat", "section": "Features"},
    {"type": "fix", "section": "Bug Fixes"},
    {"type": "chore", "hidden": true},
    {"type": "docs", "hidden": true},
    {"type": "style", "hidden": true},
    {"type": "refactor", "hidden": true},
    {"type": "perf", "hidden": true},
    {"type": "test", "hidden": true}
  ],
  "bumpFiles": [
    {
      "filename": "web/package.json",
      "type": "json"
    },
    {
      "filename": "web/package-lock.json",
      "type": "json"
    }
  ]
}

davidcunningham avatar Jun 07 '21 21:06 davidcunningham