Skip to content

Add a "reviewed by" to each item in the changelog report, listing each reviewer of a merged PR #126

@choldgraf

Description

@choldgraf

Currently, we add the author name for all PRs that have been merged. However, getting something merged always requires at least two roles: an author and a reviewer.

In the spirit of surfacing more credit for the work people do around pull requests, we could add the option of including reviewer name with each PR item. For example:

Doing something cool #119 (@authorname, reviewed by @reviewer1, @reviewer2)

Implementation

I think we're already grabbing PR reviewer information here:

reviews_query = """\
reviews(last: 100) {
edges {
node {
authorAssociation
author {
login
}
}
}
}
"""

And somewhere around here I think we'd need to add the reviewer information, maybe behind a feature flag:

for kind, info in prs.items():

Metadata

Metadata

Assignees

No one assigned

    Labels

    documentationImprovements or additions to documentation
    No fields configured for Feature.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions