Releases: macklinu/danger-plugin-jira-issue
Releases · macklinu/danger-plugin-jira-issue
v1.4.1
v1.4.0
v1.3.0
v1.2.0
1.2.0 (2017-09-20)
Features
If you work with multiple JIRA project boards, you can supply multiple project keys:
jiraIssue({
key: ['ABC', 'DEF'],
url: 'https://myjira.atlassian.net/browse',
})
This plugin will recognize issues starting with those keys (e.g. ABC-123
and DEF-234
).
v1.1.0
v1.0.2
v1.0.1
v1.0.0
1.0.0 (2017-05-12)
Features
jiraIssue()
is a Danger plugin that adds a JIRA issue link to the Danger pull request comment.
If a pull request title does not contain the supplied JIRA issue identifier (e.g. ABC-123),
then Danger will comment with a warning on the pull request asking the developer
to include the JIRA issue identifier in the pull request title.
Example usage:
// dangerfile.js
import jiraIssue from 'danger-plugin-jira-issue'
jiraIssue({
key: 'JIRA',
url: 'https://myjira.atlassian.net/browse',
emoji: ':paperclip:',
})
Breaking Changes
- this commit introduces functionality ready for a 1.0.0 release.
(8638e2f1)