-
Notifications
You must be signed in to change notification settings - Fork 24
45 lines (42 loc) · 1.64 KB
/
meetings.yml
File metadata and controls
45 lines (42 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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'