Skip to content

Commit ee77910

Browse files
committed
Setup @pkgjs/meet for regularly scheduled meetings
1 parent 8c36c59 commit ee77910

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

.github/ISSUE_TEMPLATES/meeting.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
## Date/Time
2+
3+
| Timezone | Date/Time |
4+
|----------|-----------|
5+
<%= [
6+
'America/Los_Angeles',
7+
'America/Denver',
8+
'America/Chicago',
9+
'America/New_York',
10+
'Europe/London',
11+
'Europe/Amsterdam',
12+
'Europe/Moscow',
13+
'Asia/Kolkata',
14+
'Asia/Shanghai',
15+
'Asia/Tokyo',
16+
'Australia/Sydney'
17+
].map((zone) => {
18+
return `| ${zone} | ${date.setZone(zone).toFormat('EEE dd-MMM-yyyy HH:mm (hh:mm a)')} |`
19+
}).join('\n') %>
20+
21+
Or in your local time:
22+
* https://www.timeanddate.com/worldclock/?iso=<%= date.toFormat("yyyy-MM-dd'T'HH:mm:ss") %>
23+
24+
## Agenda
25+
26+
Extracted from **<%= agendaLabel %>** labelled issues and pull requests from **<%= owner %>/<%= repo %>** prior to the meeting.
27+
28+
<%= agendaIssues.map((i) => {
29+
return `* ${i.title} [#${i.number}](${i.html_url})`
30+
}).join('\n') %>
31+
32+
## Invited
33+
34+
@conventional-commits/tsc
35+
36+
## Links
37+
38+
* Minutes:
39+
40+
### Joining the meeting
41+
42+
* link for participants: <TBD>

.github/workflows/meeting.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Schedule meetings
2+
on:
3+
schedule:
4+
- cron: '0 0 * * *'
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: pkgjs/[email protected]
10+
with:
11+
token: ${{ secrets.GITHUB_TOKEN }}
12+
schedules: '2020-10-09T17:00:00.0Z/P14D'
13+
issueTitle: 'Conventional Commits Steering Meeting <%= date.toFormat("yyyy-MM-dd") %>'
14+
agendaLabel: 'tsc-agenda'

0 commit comments

Comments
 (0)