UNPKG

@semantic-release/github

Version:

semantic-release plugin to publish a GitHub release and comment on released Pull Requests/Issues

10 lines (9 loc) 253 B
/** * Default retry config for octokit retry plugin */ export const RETRY_CONF = { // By default, Octokit does not retry on 404s. // But we want to retry on 404s to account for replication lag. doNotRetry: [400, 401, 403, 422], retries: 3, };