Skip to content

v1.0.0

Compare
Choose a tag to compare
@macklinu macklinu released this 12 May 16:16

1.0.0 (2017-05-12)

Features

  • jiraIssue: add initial implementation (#1) (8638e2f1)

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)