-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup @pkgjs/meet for regularly scheduled meetings
- Loading branch information
1 parent
8c36c59
commit ee77910
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |