@ondrejbelza/semantic-release-jira 1.7.1 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/success.js +2 -2
- package/package.json +1 -1
package/dist/success.js
CHANGED
|
@@ -107,7 +107,7 @@ async function findOrCreateVersion(c, projectIdOrKey, newVersionName, newVersion
|
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
async function editIssueFixVersions(c, ticket, versionId, logger) {
|
|
110
|
-
logger.info(`Adding issue '${ticket}' to a release '${versionId}'`);
|
|
110
|
+
logger.info(`Adding issue '${ticket.key}' to a release '${versionId}'`);
|
|
111
111
|
c.issues
|
|
112
112
|
.editIssue({
|
|
113
113
|
issueIdOrKey: ticket.key,
|
|
@@ -140,7 +140,7 @@ async function editIssueFixVersions(c, ticket, versionId, logger) {
|
|
|
140
140
|
}
|
|
141
141
|
})
|
|
142
142
|
.then(() => {
|
|
143
|
-
logger.complete(`Issue '${ticket}' was successfully added to a release.`);
|
|
143
|
+
logger.complete(`Issue '${ticket.key}' was successfully added to a release.`);
|
|
144
144
|
});
|
|
145
145
|
}
|
|
146
146
|
async function success(config, context) {
|
package/package.json
CHANGED