pnpm add @octokit/plugin-retry
import { Octokit } from '@octokit/action'
import { retry } from '@octokit/plugin-retry'
export const getOctokit = (token: string): Octokit => {
const OctokitWithRetry = Octokit.plugin(retry)
return new OctokitWithRetry()
}