Skip to content

Commit 8ae9810

Browse files
authored
chore: added meeting agenda template
1 parent 267277c commit 8ae9810

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
## Date/Time
2+
3+
| Timezone | Date/Time |
4+
|----------|-----------|
5+
<%= [
6+
'America/Los_Angeles',
7+
'America/Denver',
8+
'America/Chicago',
9+
'America/New_York',
10+
'Europe/London',
11+
'Europe/Amsterdam',
12+
'Europe/Moscow',
13+
'Asia/Kolkata',
14+
'Asia/Shanghai',
15+
'Asia/Tokyo',
16+
'Australia/Sydney'
17+
].map((zone) => {
18+
return `| ${zone} | ${date.setZone(zone).toFormat('EEE dd-MMM-yyyy HH:mm (hh:mm a)')} |`
19+
}).join('\n') %>
20+
21+
Or in your local time:
22+
* https://www.timeanddate.com/worldclock/?iso=<%= date.toFormat("yyyy-MM-dd'T'HH:mm:ss") %>
23+
24+
## Agenda
25+
26+
Extracted from **<%= agendaLabel %>** labelled issues and pull requests from **<%= owner %>/<%= repo %>** prior to the meeting.
27+
28+
<%= agendaIssues.map((i) => {
29+
return `* ${i.html_url}`
30+
}).join('\n') %>
31+
32+
## Invited
33+
34+
- Webpack TSC (@webpack/tsc)
35+
36+
### Observers/Guests
37+
38+
This meeting is open for anyone who wants to attend. Reminder to follow our [Code of Conduct](https://github.com/webpack/webpack/blob/main/CODE_OF_CONDUCT.md).
39+
40+
### Joining the meeting
41+
42+
* Join [Webpack's Discord server](https://discord.gg/5sxFZPdx2k) then the #tsc channel
43+
44+
---
45+
46+
Please use the following emoji reactions in this post to indicate your
47+
availability.
48+
49+
- 👍 - Attending
50+
- 👎 - Not attending
51+
- 😕 - Not sure yet

0 commit comments

Comments
 (0)