feat: classify more HTTP errors as configuration errors in api-client
This commit is contained in:
parent
3c42562190
commit
a022653e2d
6 changed files with 35 additions and 2 deletions
3
lib/api-client.js
generated
3
lib/api-client.js
generated
|
|
@ -206,6 +206,9 @@ function wrapApiConfigurationError(e) {
|
|||
if ((0, util_1.isHTTPError)(e)) {
|
||||
if (e.message.includes("API rate limit exceeded for installation") ||
|
||||
e.message.includes("commit not found") ||
|
||||
e.message.includes("Bad credentials") ||
|
||||
e.message.includes("Not Found") ||
|
||||
e.message.includes("Resource not accessible by integration") ||
|
||||
/ref .* not found in this repository/.test(e.message)) {
|
||||
return new util_1.ConfigurationError(e.message);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue