Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2023-01-23 17:26:40 +00:00
parent 78f2db88fc
commit 45eb0a66d5
32 changed files with 77161 additions and 5865 deletions

View file

@ -1,6 +1,6 @@
# plugin-retry.js
> Retries requests for server 4xx/5xx responses except `400`, `401`, `403` and `404`.
> Retries requests for server 4xx/5xx responses except `400`, `401`, `403`, `404`, and `422`.
[![@latest](https://img.shields.io/npm/v/@octokit/plugin-retry.svg)](https://www.npmjs.com/package/@octokit/plugin-retry)
[![Build Status](https://github.com/octokit/plugin-retry.js/workflows/Test/badge.svg)](https://github.com/octokit/plugin-retry.js/actions?workflow=Test)
@ -76,7 +76,7 @@ const octokit = new MyOctokit({
});
```
You can manually ask for retries for any request by passing `{ request: { retries: numRetries, retryAfter: delayInSeconds }}`
You can manually ask for retries for any request by passing `{ request: { retries: numRetries, retryAfter: delayInSeconds }}`. Note that the `doNotRetry` option from the constructor is ignored in this case, requests will be retried no matter their response code.
```js
octokit