-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecent-reviews.html
More file actions
30 lines (28 loc) · 1.03 KB
/
recent-reviews.html
File metadata and controls
30 lines (28 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
layout: default
---
<h1>Recent Code Reviews</h1>
We have started the alpha phase of a community code review process. Below is a list of some of the reviews that were conducted.
{% assign years = site.reviews | group_by: 'year' | sort: 'date' | reverse %}
{% for year in years %}
<hr>
<h2>{{ year.name }}</h2>
<ul class="list-group list-group-flush">
{% assign reviews = year.items | sort: 'date' | reverse %}
{% for review in reviews %}
<li class="list-group-item">
<a href="{{review.pull_request}}">{{review.title}}</a>
<br>Submitter: {{ review.submitters | join:", " }}
<br>Reviewer: {{ review.reviewers | join:", " }}
{% if review.facilitator %}<br>Facilitator: {{review.facilitator}}{% endif %}
{% if review.publications %}<br>Publications:
<ul>
{% for pub in review.publications %}
<li><a target="_blank" href="{{pub.publication.link}}">{{pub.publication.title}}</a></li>
{% endfor %}
</ul>
{% endif %}
</li>
{% endfor %}
</ul>
{% endfor %}