feat: allow filtering by pr author

This commit is contained in:
2018-10-18 16:41:57 -07:00
parent 87f4a94734
commit 68cccb72a9
3 changed files with 5 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ export default async function getPull(repo, id) {
id: pull.id,
url: pull.url,
number: pull.number,
owner: pull.user.login,
state: pull.state,
title: pull.title,
labels: pull.labels.map(label => label.name),