Skip to content

feat: updated, refactored and cleaned up #180

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# GitHub Authentication
GITHUB_TOKEN=your_github_personal_access_token_here

# Google APIs Authentication
# You can get these from the Google Cloud Console
GOOGLE_CLIENT_ID=your_google_client_id_here
GOOGLE_CLIENT_SECRET=your_google_client_secret_here
GOOGLE_REDIRECT_URI=http://localhost:3000/oauth2callback

# Optional: Google Service Account (for GitHub Actions)
# GOOGLE_SERVICE_ACCOUNT_EMAIL=your_service_account_email_here
# GOOGLE_SERVICE_ACCOUNT_PRIVATE_KEY=your_service_account_private_key_here

# Optional: Directory paths (defaults to current directory and home)
# MEETINGS_CONFIG_DIR=./
# MEETINGS_OUTPUT_DIR=~/.make-node-meeting/
70 changes: 70 additions & 0 deletions .github/workflows/create-meeting-artifacts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: Create Meeting Artifacts

on:
# Run every Monday at 10 AM UTC (adjust as needed)
schedule:
- cron: '0 10 * * 1'

# Allow manual triggering
workflow_dispatch:
inputs:
meeting_group:
description: 'Meeting group to create artifacts for'
required: true
type: choice
options:
- uvwasi
- tsc
- build
- diag
- diag_deepdive
- typescript
- Release
- cross_project_council
- modules
- tooling
- security-wg
- next-10
- package-maintenance
- package_metadata_interop
- ecosystem_report
- sustainability_collab
- standards
- security_collab
- loaders
- web-server-frameworks

jobs:
create-artifacts:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Create meeting artifacts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOOGLE_SERVICE_ACCOUNT_EMAIL: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_EMAIL }}
GOOGLE_SERVICE_ACCOUNT_PRIVATE_KEY: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_PRIVATE_KEY }}
run: node create-node-meeting-artifacts.mjs ${{ github.event.inputs.meeting_group }}

- name: Upload artifacts
if: always()
uses: actions/upload-artifact@v4
with:
name: meeting-artifacts-${{ github.event.inputs.meeting_group || 'tsc' }}
path: |
~/.make-node-meeting/
minutes_temp.txt
retention-days: 7
if-no-files-found: ignore
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22
11 changes: 11 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "avoid"
}
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Writing good commit logs is important. A commit log should describe what
changed and why. Follow these guidelines when writing one:

1. The first line should be a short description of the change
(e.g. "get-metadata: check if the committer matches the author").
(e.g. "get-metadata: check if the committer matches the author").
2. Keep the second line blank.
3. Wrap all lines at 72 columns.

Expand Down Expand Up @@ -90,23 +90,23 @@ in this project.

By making a contribution to this project, I certify that:

* (a) The contribution was created in whole or in part by me and I
- (a) The contribution was created in whole or in part by me and I
have the right to submit it under the open source license
indicated in the file; or

* (b) The contribution is based upon previous work that, to the best
- (b) The contribution is based upon previous work that, to the best
of my knowledge, is covered under an appropriate open source
license and I have the right under that license to submit that
work with modifications, whether created in whole or in part
by me, under the same open source license (unless I am
permitted to submit under a different license), as indicated
in the file; or

* (c) The contribution was provided directly to me by some other
- (c) The contribution was provided directly to me by some other
person who certified (a), (b) or (c) and I have not modified
it.

* (d) I understand and agree that this project and the contribution
- (d) I understand and agree that this project and the contribution
are public and that a record of the contribution (including all
personal information I submit with it, including my sign-off) is
maintained indefinitely and may be redistributed consistent with
Expand Down
8 changes: 3 additions & 5 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
The MIT License (MIT)
=====================
# The MIT License (MIT)

Copyright (c) 2018 create-node-meeting-artifacts authors
-------------------------------------------------------------
## Copyright (c) 2018 create-node-meeting-artifacts authors

*contributors listed at <https://github.com/nodejs/create-node-meeting-artifacts/blob/master/AUTHORS>*
_contributors listed at <https://github.com/nodejs/create-node-meeting-artifacts/blob/master/AUTHORS>_

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
Loading