You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've been using this package for a while, and noticed that it will not raise any errors of the github API calls fail.
This is especially difficult to address because the code ultimately shells out to curl - the --fail flag could be used, but then curl would not report the error message github encountered.
I think the best way to address this would be to switch from using curl to making the HTTP call in code, and then checking the error code.
Sadly, I don't really know javascript - I would be happy to help, but I'm not entirely sure how to implement even something as simple as an HTTP GET.
The text was updated successfully, but these errors were encountered:
Hi,
We've been using this package for a while, and noticed that it will not raise any errors of the github API calls fail.
This is especially difficult to address because the code ultimately shells out to
curl
- the--fail
flag could be used, but thencurl
would not report the error message github encountered.I think the best way to address this would be to switch from using curl to making the HTTP call in code, and then checking the error code.
Sadly, I don't really know javascript - I would be happy to help, but I'm not entirely sure how to implement even something as simple as an HTTP GET.
The text was updated successfully, but these errors were encountered: