File tree Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 1+ name : Schedule meetings
2+ on :
3+ schedule :
4+ - cron : ' 0 0 * * *'
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ steps :
9+ 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'
You can’t perform that action at this time.
0 commit comments