Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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'