We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 679ec63 commit 1dcf7b1Copy full SHA for 1dcf7b1
bin/mergeready
@@ -289,6 +289,9 @@ for entry in ready:
289
for line in loginfo[3:]:
290
type, path = line[:4], line[5:]
291
if 'M' in type or 'A' in type or 'D' in type:
292
+ if ' (from ' in path:
293
+ i = path.index(' (from ')
294
+ path = path[:i]
295
break
296
# Get the test status
297
try:
@@ -321,7 +324,7 @@ for branch in branches:
321
324
if re.search('^r[0-9]+ ', line):
322
325
rev, who, when = split_loginfo(line)
323
326
elif re.search('^ [AMD]', line):
- if not ' (from ' in line:
327
+ if not ' (from ' in line and not mod:
328
mod = True
329
elif re.search('^-{72}$', line) and rev and mod:
330
if not rev in merged_revs:
0 commit comments