We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db7f73f commit 0a3cfe2Copy full SHA for 0a3cfe2
.github/sync_labels.py
@@ -409,10 +409,10 @@ def get_commits(self):
409
410
self._commits = self.view('commits')
411
412
- # ignore merge commits with the develop branch for _commit_date except positive review is set
+ # ignore merge commits with the develop branch for _commit_date unless positive review is set
413
date_commits = list(self._commits)
414
if Status.positive_review.value not in self.get_labels():
415
- for com in date_commits:
+ for com in self._commits:
416
message = com['messageHeadline']
417
if message.startswith('Merge') and 'develop' in message:
418
debug('Ignore merge commit %s for commit_date' % com['oid'])
0 commit comments