-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Labels
questionFurther information is requestedFurther information is requested
Description
My office use bitbucket and JIRA to organize SCM and issue management. I have set repository.url inside package.json file from bitbucket. For issue link, we use URL from JIRA instead. Here is our configuration inside package.json file.
{
"repository": {
"url": "git+https://${my-name}@bitbucket.org/${my-office}/${office-app}.git"
},
"standard-version": {
"issueUrlFormat": "https://${my-office}.atlassian.net/browse"
}
}I have set issueUrlFormat to JIRA issue URL. I think that when we have set issueUrlFormat value, issue URL inside changelog.md file should be changed. Unfortunately, when running standard-changelog -f, generated CHANGELOG.md file still use URL from repository.url.
Here is CHANGELOG.md file content after running standard-changelog -f
### Bug Fixes
* **utilities:** unable to run `npm run pre-start` in demo ([${generated-commit-hash}](https://bitbucket.org/${my-office}/${office-app}/commits/${generated-commit-hash})), closes [${issue-ticket-id}](https://bitbucket.org/${my-office}/${office-app}/issue/${issue-ticket-id})gh0st and lehmamic
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested