We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f12574 commit 33b4987Copy full SHA for 33b4987
.github/ISSUE_TEMPLATES/meeting.md
@@ -40,9 +40,25 @@ Or in your local time:
40
41
Extracted from **<%= agendaLabel %>** labelled issues and pull requests from **<%= owner %>/<%= repo %>** prior to the meeting.
42
43
-<%= agendaIssues.map((i) => {
44
- return `* ${i.html_url}`
45
-}).join('\n') %>
+<%= agendaIssues
+ .filter((i) => {
+ 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
55
56
+ return i.labels.find((l) => l.name === 'review requested')
57
58
59
60
61
62
63
## Invited
64
0 commit comments