diff --git a/.github/ISSUE_TEMPLATE/meeting-work-session.md b/.github/ISSUE_TEMPLATE/meeting-work-session.md deleted file mode 100644 index 60e7ead..0000000 --- a/.github/ISSUE_TEMPLATE/meeting-work-session.md +++ /dev/null @@ -1,47 +0,0 @@ -## Date/Time - -| Timezone | Date/Time | -|----------|-----------| -<%= [ - 'America/Los_Angeles', - 'America/Denver', - 'America/Chicago', - 'America/New_York', - 'Europe/London', - 'Europe/Amsterdam', - 'Europe/Moscow', - 'Asia/Kolkata', - 'Asia/Shanghai', - 'Asia/Tokyo', - 'Australia/Sydney' -].map((zone) => { - return `| ${zone} | ${date.setZone(zone).toFormat('EEE dd-MMM-yyyy HH:mm (hh:mm a)')} |` -}).join('\n') %> - -Or in your local time: -* https://www.timeanddate.com/worldclock/?iso=<%= date.toFormat("yyyy-MM-dd'T'HH:mm:ss") %> - -## Agenda - -Extracted from **<%= agendaLabel %>** labelled issues and pull requests from **<%= owner %>/<%= repo %>** prior to the meeting. - -<%= agendaIssues.map((i) => { - return `* ${i.html_url}` -}).join('\n') %> - -## Invited - -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). - -@expressjs/express-tc -@expressjs/triagers -@expressjs/security-wg - -## Links - -* Minutes: - -### Joining the meeting - -* link for participants: https://zoom-lfx.platform.linuxfoundation.org/meeting/95258037175?password=07aad89d-ff43-45df-9b28-f437e167a0b9 -* For those who just want to watch: https://www.youtube.com/@expressjs-official diff --git a/.github/ISSUE_TEMPLATE/meeting.md b/.github/ISSUE_TEMPLATE/meeting.md index c58c998..decd1c9 100644 --- a/.github/ISSUE_TEMPLATE/meeting.md +++ b/.github/ISSUE_TEMPLATE/meeting.md @@ -43,5 +43,5 @@ This meeting is open for anyone who wants to attend. Reminder to follow our [Cod ### Joining the meeting -* link for participants: <%= issueTitle.include("Working") ? https://zoom-lfx.platform.linuxfoundation.org/meeting/95258037175?password=07aad89d-ff43-45df-9b28-f437e167a0b9 : hey %> +* link for participants: <%= title.split(' ').slice(-2).join(' ').toLowerCase() === "working session" ? 'https://zoom-lfx.platform.linuxfoundation.org/meeting/95258037175?password=07aad89d-ff43-45df-9b28-f437e167a0b9' : 'https://zoom-lfx.platform.linuxfoundation.org/meeting/95266714809?password=f37cff1b-cb3a-4a21-9425-210e4714c72e' %> * For those who just want to watch: https://www.youtube.com/@expressjs-official diff --git a/.github/workflows/meetings.yml b/.github/workflows/meetings.yml index aba8cfe..60f3d30 100644 --- a/.github/workflows/meetings.yml +++ b/.github/workflows/meetings.yml @@ -20,7 +20,7 @@ jobs: meetingLabels: 'meeting' # https://github.com/expressjs/discussions/issues/195#issuecomment-1973732769 # Starting on 2024-03-18 at 8pm UTC (2024-03-18T21:00:00.0Z) with a period of 2 weeks (P2W) - schedules: '2024-03-18T20:00:00.0Z/P2W' + schedules: '2024-03-18T21:00:00.0Z/P2W' createWithin: 'P1W' issueTemplate: 'meeting.md' @@ -35,6 +35,6 @@ jobs: # Converting the second time slot to a "working session" # https://github.com/expressjs/discussions/issues/195#issuecomment-1973732769 # Starting on 2024-03-27 at 8pm UTC (2024-03-27T21:00:00.0Z) with a period of 2 weeks (P2W) - schedules: '2024-03-27T20:00:00.0Z/P2W' + schedules: '2024-03-27T21:00:00.0Z/P2W' createWithin: 'P1W' issueTemplate: 'meeting.md'