| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
Copilot reviewed 6 out of 7 changed files in this pull request and generated 1 comment.
Files not reviewed (1)lib/start-proxy-action.js:155
const registry_urls = config.all_credentials
Tip: Turn on automatic Copilot reviews for this repository to get quick feedback on every pull request. Learn more
Sorry, something went wrong.
| core.setOutput("proxy_ca_certificate", config.ca.cert); | ||
|
|
||
| const registry_urls = config.all_credentials | ||
| .filter((credential) => credential.url !== undefined) |
There was a problem hiding this comment.
The filter condition should use 'credential.url != null' instead of 'credential.url !== undefined' to properly filter out both 'undefined' and 'null' values.
| .filter((credential) => credential.url !== undefined) | |
| .filter((credential) => credential.url != null) |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Merge / deployment checklist