Schedule Meetings #698
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Schedule Meetings | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- '.github/workflows/meetings.yml' | |
- '.github/ISSUE_TEMPLATE/meeting.md' | |
schedule: | |
- cron: '0 0 * * *' | |
permissions: | |
issues: write | |
contents: read | |
jobs: | |
meeting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Technical Committee | |
uses: 'pkgjs/meet@v1' | |
with: | |
issueTitle: '<%= date.toZonedDateTimeISO("UTC").toPlainDate().toString() %> Express TC Meeting' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
orgs: expressjs,pillarjs,jshttp | |
agendaLabel: 'tc agenda' | |
meetingLabels: 'meeting' | |
# Monday 1 PM America/Chicago with a period of 2 weeks (P2W) | |
schedules: '2025-08-04T13:00:00.0[America/Chicago]/P2W' | |
createWithin: 'P1W' | |
meetingLink: 'https://zoom-lfx.platform.linuxfoundation.org/meeting/95266714809?password=f37cff1b-cb3a-4a21-9425-210e4714c72e' | |
issueTemplate: 'meeting.md' | |
- name: Working Session | |
uses: 'pkgjs/meet@v1' | |
with: | |
issueTitle: '<%= date.toZonedDateTimeISO("UTC").toPlainDate().toString() %> Express Working Session' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
orgs: expressjs,pillarjs,jshttp | |
agendaLabel: 'top priority' | |
meetingLabels: 'meeting' | |
# Wednesday 3 PM America/Chicago with a period of 2 weeks (P2W) | |
schedules: '2025-08-13T15:00:00.0[America/Chicago]/P2W' | |
createWithin: 'P1W' | |
meetingLink: 'https://zoom-lfx.platform.linuxfoundation.org/meeting/95258037175?password=07aad89d-ff43-45df-9b28-f437e167a0b9' | |
issueTemplate: 'meeting.md' |