Skip to content

Commit

Permalink
chore(danger): warn only for non conventional changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonoj committed Feb 16, 2017
1 parent 7839002 commit 8d13406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dangerfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ var messageConventionValid = danger.git.commits.reduce(function (acc, value) {
}, true);

if (!messageConventionValid) {
fail("commit message does not follows conventional change log (" + ++errorCount + ")");
warn("commit message does not follows conventional change log (" + ++errorCount + ")");
markdown('> (' + errorCount + ') : RxJS uses conventional change log to generate changelog automatically. It seems some of commit messages are not following those, please check [contributing guideline](https://github.com/ReactiveX/rxjs/blob/master/CONTRIBUTING.md#commit-message-format) and update commit messages.');
}

0 comments on commit 8d13406

Please sign in to comment.