Skip to content

Commit 7cc9c12

Browse files
committed
Merge branch 'addtl-args' of https://github.com/avivkeller/create-node-meeting-artifacts into addtl-args
2 parents 2665126 + 5ff8f4d commit 7cc9c12

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/create-meeting-artifacts-manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
7474
HACKMD_API_TOKEN: ${{ secrets.HACKMD_API_TOKEN }}
7575
GOOGLE_API_KEY: ${{ secrets.GOOGLE_API_KEY }}
76-
run: node create-node-meeting-artifacts.mjs ${{ github.event.inputs.meeting_group }} --verbose ${{ github.event.inputs.dry_run && '--dry-run' }}
76+
run: node create-node-meeting-artifacts.mjs ${{ github.event.inputs.meeting_group }} --verbose ${{ github.event.inputs.dry_run == 'true' && '--dry-run' || '' }}
7777

7878
- name: Upload artifacts
7979
if: always()

src/config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { join, dirname } from 'node:path';
44
const defaultMeetingsDirectory = join(homedir(), '.make-node-meeting');
55

66
/**
7-
* @type {import('./types.d.ts').EnvironmentConfig} Environment configuration object
7+
* @type {import('./types.d.ts').AppConfig} Environment configuration object
88
*/
99
export default {
1010
// GitHub personal access token from environment

0 commit comments

Comments
 (0)