Skip to content

Commit

Permalink
Merge branch 'add-triage-and-security-meet' of github.com:bjohansebas…
Browse files Browse the repository at this point in the history
…/discussions into add-triage-and-security-meet
  • Loading branch information
bjohansebas committed Oct 28, 2024
2 parents 91704b5 + 8a3a52c commit a295da6
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/ISSUE_TEMPLATE/meeting-triage.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
## 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") %>

## Links

* Minutes:

## Agenda

Extracted from **<%= agendaLabel %>** labelled issues and pull requests from **<%= owner %>/<%= repo %>** prior to the meeting.

<%= agendaIssues.map((i) => {
return `* ${i.html_url}`
}).join('\n') %>

## Invited

This meeting is open for anyone who wants to attend. Reminder to follow our [Code of Conduct](https://github.com/expressjs/express/blob/master/Code-Of-Conduct.md).

- Triage team: @expressjs/triagers

### Observers/Guests

## Joining the meeting

* link for participants: https://zoom-lfx.platform.linuxfoundation.org/meeting/99366452429?password=13cb3704-9041-4556-a409-85e7384b53fd
* For those who just want to watch: https://www.youtube.com/@expressjs-official

<hr>

Please use the following emoji reactions in this post to indicate your
availability.

- 👍 - Attending
- 👎 - Not attending
- 😕 - Not sure yet
13 changes: 13 additions & 0 deletions .github/workflows/meetings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,16 @@ jobs:
schedules: '2024-03-27T20:00:00.0Z/P2W'
createWithin: 'P1W'
issueTemplate: 'meeting.md'
- name: Triage Working Session
uses: 'pkgjs/meet@61042a30f295179c24673776877615fa12a6c0bc' # v0.0.19'
with:
issueTitle: '<%= date.toFormat("yyyy-MM-dd") %> Express Triage Session'
token: ${{ secrets.GITHUB_TOKEN }}
orgs: expressjs,pillarjs,jshttp
agendaLabel: 'triage-meeting'
meetingLabels: 'meeting'
# https://github.com/expressjs/discussions/issues/276#issuecomment-2399741373
# Starting on 2024-10-28 at 7pm UTC (2024-10-28T19:00:00.0Z) with a period of 4 weeks (P4W)
schedules: '2024-10-28T19:00:00.0Z/P4W'
createWithin: 'P1W'
issueTemplate: 'meeting-triage.md'

0 comments on commit a295da6

Please sign in to comment.