Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: b52157e85e
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| - name: Debug DATABASE_URL | ||
| run: | | ||
| echo "DATABASE_URL=$DATABASE_URL" | ||
| node -e "console.log(process.env.DATABASE_URL)" |
There was a problem hiding this comment.
Remove DATABASE_URL logging from CI
This step prints DATABASE_URL directly into GitHub Actions logs, which can expose credentials when the variable is a secret (common for database URLs). Anyone with access to workflow logs can read it, and logs can be retained or shared outside the team. If you need to validate presence, prefer masking or only checking that it is set without outputting the value.
Useful? React with 👍 / 👎.
No description provided.