From 1081d0404ec1780253d4ba1841a8a509fc1d52d4 Mon Sep 17 00:00:00 2001 From: Wes Todd Date: Tue, 19 Mar 2024 09:31:50 -0500 Subject: [PATCH] fix: updated template and split to two meetings --- .../{meeting-tc.md => meeting.md} | 8 +++++-- .github/workflows/meetings.yml | 24 +++++++++++++++---- 2 files changed, 25 insertions(+), 7 deletions(-) rename .github/ISSUE_TEMPLATE/{meeting-tc.md => meeting.md} (66%) diff --git a/.github/ISSUE_TEMPLATE/meeting-tc.md b/.github/ISSUE_TEMPLATE/meeting.md similarity index 66% rename from .github/ISSUE_TEMPLATE/meeting-tc.md rename to .github/ISSUE_TEMPLATE/meeting.md index 1d04c96..c4c2249 100644 --- a/.github/ISSUE_TEMPLATE/meeting-tc.md +++ b/.github/ISSUE_TEMPLATE/meeting.md @@ -31,7 +31,11 @@ Extracted from **<%= agendaLabel %>** labelled issues and pull requests from **< ## 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 @@ -39,5 +43,5 @@ Extracted from **<%= agendaLabel %>** labelled issues and pull requests from **< ### Joining the meeting -* link for participants: TBD -* For those who just want to watch: TBD +* link for participants: 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 2a445a6..19894b8 100644 --- a/.github/workflows/meetings.yml +++ b/.github/workflows/meetings.yml @@ -16,11 +16,25 @@ jobs: issueTitle: '<%= date.toFormat("yyyy-MM-dd") %> Express TC Meeting' token: ${{ secrets.GITHUB_TOKEN }} orgs: expressjs,pillarjs,jshttp + agendaLabel: 'tc agenda' + meetingLabels: 'meeting' + # https://github.com/expressjs/discussions/issues/195#issuecomment-1973732769 + # Starting on 2024-03-27 at 9pm UTC (2024-03-27T21:00:00.0Z) with a period of 2 weeks (P2W) + schedules: '2024-03-18T21:00:00.0Z/P2W,2024-03-27T21:00:00.0Z/P2W' + createWithin: 'P1W' + issueTemplate: 'meeting.md' + + - name: Working Session + uses: 'pkgjs/meet@v0' + with: + issueTitle: '<%= date.toFormat("yyyy-MM-dd") %> Express Working Session' + token: ${{ secrets.GITHUB_TOKEN }} + orgs: expressjs,pillarjs,jshttp agendaLabel: 'top priority' meetingLabels: 'meeting' - # We alternate between two time slots: - # 1. Starting on 2024-03-04 at 9pm UTC (2024-03-04T21:00:00.0Z) with a period of 2 weeks (P2W) - # 2. Starting on 2024-03-20 at 9pm UTC (2024-03-20T21:00:00.0Z) with a period of 2 weeks (P2W) - schedules: '2024-03-04T21:00:00.0Z/P2W,2024-03-20T21:00:00.0Z/P2W' + # Converting the second time slot to a "working session" + # https://github.com/expressjs/discussions/issues/195#issuecomment-1973732769 + # Starting on 2024-03-27 at 9pm UTC (2024-03-27T21:00:00.0Z) with a period of 2 weeks (P2W) + schedules: '2024-03-18T21:00:00.0Z/P2W,2024-03-27T21:00:00.0Z/P2W' createWithin: 'P1W' - issueTemplate: 'meeting-tc.md' + issueTemplate: 'meeting.md'