AkhileshNS / heroku-deploy

A simple github action that dynamically deploys an app to heroku
MIT License
972 stars 254 forks source link

healthcheck doesn't work with URLs with HTTP auth #161

Open matthieua opened 1 year ago

matthieua commented 1 year ago

Hello, my app is password protected but the healthcheck doesn't support such URLs (I think it's because you're using phin which doesn't support them).

Example of URL: https://hello:world@www.myapp.com

I suggest you switch to another library to make the HTTP call for the healthcheck that supports such URLs.

Thanks