Skip to content

Commit aab11fd

Browse files
committed
add new meetings
1 parent 1e45c74 commit aab11fd

File tree

3 files changed

+118
-0
lines changed

3 files changed

+118
-0
lines changed
+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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+
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).
35+
36+
@expressjs/express-tc
37+
@expressjs/security-wg
38+
39+
## Links
40+
41+
* Minutes:
42+
43+
### Joining the meeting
44+
45+
* link for participants: https://zoom-lfx.platform.linuxfoundation.org/meeting/93099394904?password=d712f2e5-4fc9-45d1-99c5-fd762b885588
46+
* For those who just want to watch: https://www.youtube.com/@expressjs-official
+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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+
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).
35+
36+
@expressjs/express-tc
37+
@expressjs/triagers
38+
39+
## Links
40+
41+
* Minutes:
42+
43+
### Joining the meeting
44+
45+
* link for participants: https://zoom-lfx.platform.linuxfoundation.org/meeting/96213163902?password=17f79897-eb49-4eca-8671-d036076263b9
46+
* For those who just want to watch: https://www.youtube.com/@expressjs-official

.github/workflows/meetings.yml

+26
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,29 @@ jobs:
3838
schedules: '2024-03-27T20:00:00.0Z/P2W'
3939
createWithin: 'P1W'
4040
issueTemplate: 'meeting.md'
41+
- name: Security Working Session
42+
uses: 'pkgjs/meet@v0'
43+
with:
44+
issueTitle: '<%= date.toFormat("yyyy-MM-dd") %> Express Security Session'
45+
token: ${{ secrets.GITHUB_TOKEN }}
46+
orgs: expressjs,pillarjs,jshttp
47+
agendaLabel: 'security-wg-agenda'
48+
meetingLabels: 'meeting'
49+
# https://github.com/expressjs/security-wg/issues/28#issuecomment-2399781618
50+
# Starting on 2024-10-21 at 5:30pm UTC (2024-10-21T17:30:00.0Z) with a period of 4 weeks (P4W)
51+
schedules: '2024-10-21T17:30:00.0Z/P4W'
52+
createWithin: 'P1W'
53+
issueTemplate: 'meeting-security.md'
54+
- name: Triage Working Session
55+
uses: 'pkgjs/meet@v0'
56+
with:
57+
issueTitle: '<%= date.toFormat("yyyy-MM-dd") %> Express Triage Session'
58+
token: ${{ secrets.GITHUB_TOKEN }}
59+
orgs: expressjs,pillarjs,jshttp
60+
agendaLabel: 'triage-meeting'
61+
meetingLabels: 'meeting'
62+
# https://github.com/expressjs/discussions/issues/276#issuecomment-2399741373
63+
# Starting on 2024-10-27 at 7pm UTC (2024-10-27T19:00:00.0Z) with a period of 4 weeks (P4W)
64+
schedules: '2024-10-27T19:00:00.0Z/P4W'
65+
createWithin: 'P1W'
66+
issueTemplate: 'meeting-triage.md'

0 commit comments

Comments
 (0)