Skip to content

Commit

Permalink
feat: use pkgjs/meet to generate meeting agenda
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleytodd committed Mar 2, 2024
1 parent 664d949 commit a8b0fa4
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/ISSUE_TEMPLATE/meeting-tc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
## 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

@expressjs/express-tc

## Links

* Minutes:

### Joining the meeting

* link for participants: TBD
* For those who just want to watch: TBD
24 changes: 24 additions & 0 deletions .github/workflows/meetings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Schedule Meetings
on:
pull_request:
push:
branches:
- main
schedule:
- cron: '0 0 * * 1'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Technical Committee
uses: 'pkgjs/meet@v0'
with:
issueTitle: '<%= date.toFormat("yyyy-MM-dd") %> Express TC Meeting'
token: ${{ secrets.GITHUB_TOKEN }}
orgs: expressjs,pillarjs,jshttp
agendaLabel: 'top priority'
meetingLabels: 'meeting'
# Starting on 2024-03-04 at 9pm UTC (2024-03-04T21:00:00.0Z) with a period of 2 weeks (P2W)
schedules: '2024-03-04T21:00:00.0Z/P2W'
createWithin: 'P1D'
issueTemplate: 'meeting-tc.md'

0 comments on commit a8b0fa4

Please sign in to comment.