We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a89b11 commit 6713f00Copy full SHA for 6713f00
packages/semantic_release_jira/index.js
@@ -53,7 +53,8 @@ module.exports = {
53
async success(pluginConfig, context) {
54
const { nextRelease, commits } = context
55
56
- const version = nextRelease.version
+ // use gitTag so it includes the prefix and suffix
57
+ const version = nextRelease.gitTag
58
59
// Extract Jira tickets from commit messages
60
const jiraTickets = new Set()
0 commit comments