-
Notifications
You must be signed in to change notification settings - Fork 36
TASK-10510: Fix deploy by netlify plugin #799
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
Conversation
Signed-off-by: Doug Koerich <[email protected]>
✅ Deploy Preview for support-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Signed-off-by: Doug Koerich <[email protected]>
Signed-off-by: Doug Koerich <[email protected]>
Signed-off-by: Doug Koerich <[email protected]>
Signed-off-by: Doug Koerich <[email protected]>
Signed-off-by: Doug Koerich <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR standardizes the Node.js version across the project, bumps the package version, and removes a hardcoded API key from the docs.
- Bump package version to 0.2.0 and relax Node engine requirement to
^16 - Update Node version references in README and GitHub Actions
- Redact the hardcoded
auth_keyin the push HTTP request example
Reviewed Changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Bumped version and updated "engines.node" to ^16 |
| content/momentum/3/3-push/push-http-request-eval.md | Replaced hardcoded auth_key with "REDACTED" |
| README.md | Changed documented Node version from 16.12.0 to 16.x |
| .github/workflows/index.yml | Updated actions/setup-node to use Node 16.x |
Comments suppressed due to low confidence (1)
README.md:156
- Add a space after the list hyphen for proper markdown syntax (e.g.
- 16.x) to match the project’s formatting style.
16.x
| local request = "{ \"registration_ids\": [ \"" .. reg_id .. "\" ], \"dry_run\": true, » | ||
| \"data\": { \"message\": \"Push message to send over GCM\" } }" | ||
| local auth_key = "AIzaSyA09R1jflwVV4T79OIuLtTxQyXKFlOVQfs" | ||
| local auth_key = "REDACTED" |
Copilot
AI
Jul 10, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid hardcoding sensitive keys in examples; consider loading auth_key from an environment variable and documenting that approach to keep secrets out of source files.
| local auth_key = "REDACTED" | |
| local auth_key = os.getenv("AUTH_KEY") | |
| if not auth_key then | |
| error("Environment variable AUTH_KEY is not set. Please set it to your authorization key.") | |
| end |
No description provided.