Skip to content

Commit b6a317f

Browse files
authored
feat: add triage meetings (#284)
* add triage meeting workflow * chore: change date of meeting
1 parent ba5642e commit b6a317f

File tree

2 files changed

+69
-0
lines changed

2 files changed

+69
-0
lines changed
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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+
## Links
25+
26+
* Minutes Google Doc:
27+
28+
## Agenda
29+
30+
Extracted from **<%= agendaLabel %>** labelled issues and pull requests from **<%= owner %>/<%= repo %>** prior to the meeting.
31+
32+
<%= agendaIssues.map((i) => {
33+
return `* ${i.html_url}`
34+
}).join('\n') %>
35+
36+
## Invited
37+
38+
This meeting is open for anyone who wants to attend. Reminder to follow our [Code of Conduct](https://github.com/expressjs/express/blob/master/Code-Of-Conduct.md).
39+
40+
- Triage team: @expressjs/triagers
41+
42+
### Observers/Guests
43+
44+
## Joining the meeting
45+
46+
* link for participants: https://zoom-lfx.platform.linuxfoundation.org/meeting/99366452429?password=13cb3704-9041-4556-a409-85e7384b53fd
47+
* For those who just want to watch: https://www.youtube.com/@expressjs-official
48+
49+
<hr>
50+
51+
Please use the following emoji reactions in this post to indicate your
52+
availability.
53+
54+
- 👍 - Attending
55+
- 👎 - Not attending
56+
- 😕 - Not sure yet

.github/workflows/meetings.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,16 @@ jobs:
4040
createWithin: 'P1W'
4141
meetingLink: 'https://zoom-lfx.platform.linuxfoundation.org/meeting/95258037175?password=07aad89d-ff43-45df-9b28-f437e167a0b9'
4242
issueTemplate: 'meeting.md'
43+
- name: Triage Working Session
44+
uses: 'pkgjs/meet@v0'
45+
with:
46+
issueTitle: '<%= date.toFormat("yyyy-MM-dd") %> Express Triage Session'
47+
token: ${{ secrets.GITHUB_TOKEN }}
48+
orgs: expressjs,pillarjs,jshttp
49+
agendaLabel: 'triage-meeting'
50+
meetingLabels: 'meeting'
51+
# https://github.com/expressjs/discussions/issues/276#issuecomment-2399741373
52+
# Starting on 2025-01-27 at 8pm UTC (2025-01-27T20:00:00.0Z) with a period of 4 weeks (P4W)
53+
schedules: '2025-01-27T20:00:00.0Z/P4W'
54+
createWithin: 'P1W'
55+
issueTemplate: 'meeting-triage.md'

0 commit comments

Comments
 (0)