From a3f0796052d58f1be9603ba918a71b388822c8ef Mon Sep 17 00:00:00 2001 From: Sebastian Beltran Date: Thu, 7 Aug 2025 18:08:42 -0500 Subject: [PATCH] meeting: remove meeting Signed-off-by: Sebastian Beltran --- .github/ISSUE_TEMPLATE/meeting.md | 60 ------------------------------- .github/workflows/meetings.yml | 30 ---------------- 2 files changed, 90 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/meeting.md delete mode 100644 .github/workflows/meetings.yml diff --git a/.github/ISSUE_TEMPLATE/meeting.md b/.github/ISSUE_TEMPLATE/meeting.md deleted file mode 100644 index c366260..0000000 --- a/.github/ISSUE_TEMPLATE/meeting.md +++ /dev/null @@ -1,60 +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") %> - -## Links - -* Minutes Google Doc: - -## 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 - -- Security working team: @nodejs/security-wg - -### Observers/Guests - -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/security-wg -- @expressjs/security-triage - -### Joining the meeting - -* link for participants: https://zoom-lfx.platform.linuxfoundation.org/meeting/93099394904?password=d712f2e5-4fc9-45d1-99c5-fd762b885588 -* For those who just want to watch: https://www.youtube.com/@expressjs-official - ---- - -Please use the following emoji reactions in this post to indicate your -availability. - -- 👍 - Attending -- 👎 - Not attending -- 😕 - Not sure yet diff --git a/.github/workflows/meetings.yml b/.github/workflows/meetings.yml deleted file mode 100644 index f7187bf..0000000 --- a/.github/workflows/meetings.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Schedule Meetings -on: - pull_request: - push: - branches: - - master - schedule: - - cron: '0 0 * * *' - -permissions: - issues: write - contents: read - -jobs: - meeting: - runs-on: ubuntu-latest - steps: - - name: Security Working Session - uses: 'pkgjs/meet@v0' - with: - issueTitle: '<%= date.toFormat("yyyy-MM-dd") %> Express Security Session' - token: ${{ secrets.GITHUB_TOKEN }} - orgs: expressjs,pillarjs,jshttp - agendaLabel: 'security-wg-agenda' - meetingLabels: 'meeting' - # https://github.com/expressjs/security-wg/issues/28#issuecomment-2399781618 - # Starting on 2024-10-21 at 4:30pm UTC (2024-10-21T16:30:00.0Z) with a period of 4 weeks (P4W) - schedules: '2025-02-17T16:30:00.0Z/P4W' - createWithin: 'P1W' - issueTemplate: 'meeting.md'