Skip to content

Commit c5f1ca3

Browse files
committed
chore(compare-master-to-stable): make checks for bugfixes better
Prevent the script from alerting you if a docs fix has something like "Fixes typo in foo", which is not how bugfixes are worded. Closes angular#8801
1 parent 7a36d49 commit c5f1ca3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compare-master-to-stable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ then(allInSeries(function (branch) {
145145
line = line.split(' ');
146146
var sha = line.shift();
147147
var msg = line.join(' ');
148-
return sha + (msg.toLowerCase().indexOf('fix') === -1 ? ' ' : ' * ') + msg;
148+
return sha + ((/fix\([^\)]+\):/i.test(msg)) ? ' * ' : ' ') + msg;
149149
});
150150
branch.log = log.map(function (line) {
151151
return line.substr(41);

0 commit comments

Comments
 (0)