@@ -123,9 +123,14 @@ templates/minutes_base_<shortname>
123123
124124See [ TEMPLATES_DOCUMENTATION.md] ( ./TEMPLATES_DOCUMENTATION.md ) for detailed template examples and variable explanations.
125125
126- ### 2. Update GitHub Actions Workflow
126+ ### 2. Update GitHub Actions Workflows
127127
128- Add your meeting group to ` .github/workflows/create-meeting-artifacts.yml ` :
128+ Add your meeting group to both workflow files:
129+
130+ - ` .github/workflows/create-meeting-artifacts-manual.yml `
131+ - ` .github/workflows/create-meeting-artifacts-scheduled.yml `
132+
133+ For manual workflow, add your group to the ` options ` list under ` workflow_dispatch.inputs.meeting_group ` :
129134
130135``` yaml
131136workflow_dispatch :
@@ -142,6 +147,19 @@ workflow_dispatch:
142147 - your-new-group # Add your group here
143148` ` `
144149
150+ For scheduled workflow, add your group to the ` matrix.meeting_group` list:
151+
152+ ` ` ` yaml
153+ strategy:
154+ matrix:
155+ meeting_group:
156+ - uvwasi
157+ - tsc
158+ - build
159+ # ... existing groups ...
160+ - your-new-group # Add your group here
161+ ` ` `
162+
145163# ## 3. Update Package.json Scripts
146164
147165Add npm scripts to `package.json` following this pattern :
@@ -211,10 +229,6 @@ The application creates:
211229- `HACKMD_API_TOKEN` : HackMD API token for creating and managing documents
212230- `GOOGLE_API_KEY` : Google Calendar API Key for read-only calendar access
213231
214- # ### Optional
215-
216- - `HACKMD_TEAM_NAME` : HackMD team name/path for team workspaces
217-
218232# ## Meeting Base Configuration
219233
220234Each `meeting_base_<group>` file contains :
@@ -227,5 +241,6 @@ REPO="repository-name"
227241GROUP_NAME="Full Group Name"
228242AGENDA_TAG="agenda-label"
229243ISSUE_LABEL="optional-issue-label"
244+ HACKMD_TEAM_NAME="openjs-nodejs"
230245JOINING_INSTRUCTIONS="Meeting join instructions"
231246` ` `
0 commit comments