From ee779109bcdfe6eedb0cbf44585844401760a4ea Mon Sep 17 00:00:00 2001 From: Wes Todd Date: Fri, 9 Oct 2020 13:44:50 -0400 Subject: [PATCH] Setup @pkgjs/meet for regularly scheduled meetings --- .github/ISSUE_TEMPLATES/meeting.md | 42 ++++++++++++++++++++++++++++++ .github/workflows/meeting.yml | 14 ++++++++++ 2 files changed, 56 insertions(+) create mode 100644 .github/ISSUE_TEMPLATES/meeting.md create mode 100644 .github/workflows/meeting.yml diff --git a/.github/ISSUE_TEMPLATES/meeting.md b/.github/ISSUE_TEMPLATES/meeting.md new file mode 100644 index 0000000..457c143 --- /dev/null +++ b/.github/ISSUE_TEMPLATES/meeting.md @@ -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: diff --git a/.github/workflows/meeting.yml b/.github/workflows/meeting.yml new file mode 100644 index 0000000..ef1b941 --- /dev/null +++ b/.github/workflows/meeting.yml @@ -0,0 +1,14 @@ +name: Schedule meetings +on: + schedule: + - cron: '0 0 * * *' +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: pkgjs/meet@v0.0 + 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'