Skip to content

Commit 33b4987

Browse files
authored
feat(meeting): separate pull request reviews from agenda items (#59)
1 parent 1f12574 commit 33b4987

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

.github/ISSUE_TEMPLATES/meeting.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,25 @@ Or in your local time:
4040

4141
Extracted from **<%= agendaLabel %>** labelled issues and pull requests from **<%= owner %>/<%= repo %>** prior to the meeting.
4242

43-
<%= agendaIssues.map((i) => {
44-
return `* ${i.html_url}`
45-
}).join('\n') %>
43+
<%= agendaIssues
44+
.filter((i) => {
45+
return !i.labels.find((l) => l.name === 'review requested')
46+
})
47+
.map((i) => {
48+
return `* ${i.html_url}`
49+
}).join('\n')
50+
%>
51+
52+
**Pull Request Reviews:**
53+
54+
<%= agendaIssues
55+
.filter((i) => {
56+
return i.labels.find((l) => l.name === 'review requested')
57+
})
58+
.map((i) => {
59+
return `* ${i.html_url}`
60+
}).join('\n')
61+
%>
4662

4763
## Invited
4864

0 commit comments

Comments
 (0)