Merge "[check-approval] Use committer instead of owner"
This commit is contained in:
commit
e38e6cee44
@ -87,10 +87,11 @@ class GerritChange(object):
|
|||||||
raw, raw.url, trimmed)
|
raw, raw.url, trimmed)
|
||||||
raise
|
raise
|
||||||
|
|
||||||
# Extract approvers from JSON data. Approvers include change owner
|
# Extract approvers from JSON data. Approvers include last committer
|
||||||
# and anyone who voted Code-Review+1. NB: Gerrit does not fill
|
# and anyone who voted Code-Review+1. NB: Gerrit does not fill
|
||||||
# labels.CodeReview.all unless there is a vote already
|
# labels.CodeReview.all unless there is a vote already
|
||||||
self.approvers = [decoded['owner']['email']]
|
last_revision = decoded['revisions'][decoded['current_revision']]
|
||||||
|
self.approvers = [last_revision['uploader']['email']]
|
||||||
if 'all' in decoded['labels']['Code-Review']:
|
if 'all' in decoded['labels']['Code-Review']:
|
||||||
self.approvers.extend([
|
self.approvers.extend([
|
||||||
i['email']
|
i['email']
|
||||||
|
Loading…
x
Reference in New Issue
Block a user