Skip to content

Commit 9628a7b

Browse files
committed
feat: refactor with templating support
1 parent 07890e8 commit 9628a7b

31 files changed

+59996
-209870
lines changed

dist/index.js

Lines changed: 57943 additions & 207182 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/licenses.txt

Lines changed: 383 additions & 1865 deletions
Large diffs are not rendered by default.

dist/meetings.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
## Date/Time
2+
3+
| Timezone | Date/Time |
4+
|----------|-----------|
5+
{{#each timezones}}
6+
| {{this}} | {{formatDate ../date this}} |
7+
{{/each}}
8+
9+
Or in your local time:
10+
* https://www.timeanddate.com/worldclock/?iso={{formatDateISO date}}
11+
12+
## Agenda
13+
14+
Extracted from **{{label}}** labelled issues and pull requests prior to the meeting.
15+
16+
{{#each issues}}
17+
* {{html_url}}
18+
{{/each}}
19+
20+
### Joining the meeting
21+
22+
{{location}}

dist/xhr-sync-worker.js

Lines changed: 0 additions & 59 deletions
This file was deleted.

package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@
1010
"test": "vitest",
1111
"coverage": "vitest run --coverage"
1212
},
13-
"keywords": ["actions", "node", "meeting", "agenda", "working-groups"],
13+
"keywords": [
14+
"actions",
15+
"node",
16+
"meeting",
17+
"agenda",
18+
"working-groups"
19+
],
1420
"engines": {
1521
"node": ">=20"
1622
},
@@ -20,8 +26,7 @@
2026
"dependencies": {
2127
"@actions/core": "1.11.1",
2228
"@actions/github": "6.0.1",
23-
"is-dst": "1.0.0",
24-
"isomorphic-dompurify": "2.25.0",
29+
"handlebars": "4.7.8",
2530
"luxon": "3.6.1",
2631
"node-ical": "0.20.1"
2732
},

0 commit comments

Comments
 (0)