Skip to content

Commit

Permalink
Setup @pkgjs/meet for regularly scheduled meetings
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleytodd committed Oct 9, 2020
1 parent 8c36c59 commit ee77910
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/ISSUE_TEMPLATES/meeting.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
## 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.title} [#${i.number}](${i.html_url})`
}).join('\n') %>

## Invited

@conventional-commits/tsc

## Links

* Minutes:

### Joining the meeting

* link for participants: <TBD>
14 changes: 14 additions & 0 deletions .github/workflows/meeting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Schedule meetings
on:
schedule:
- cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: pkgjs/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
schedules: '2020-10-09T17:00:00.0Z/P14D'
issueTitle: 'Conventional Commits Steering Meeting <%= date.toFormat("yyyy-MM-dd") %>'
agendaLabel: 'tsc-agenda'

0 comments on commit ee77910

Please sign in to comment.