Merge pull request #13506 from phaakmat/githubPullRequest-throttling-option
Disable octokit throttling
This commit is contained in:
+4
-1
@@ -79,7 +79,10 @@ export const defaultClientFactory = async ({
|
||||
});
|
||||
|
||||
const OctokitPR = Octokit.plugin(createPullRequest);
|
||||
return new OctokitPR(octokitOptions);
|
||||
return new OctokitPR({
|
||||
...octokitOptions,
|
||||
...{ throttle: { enabled: false } },
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user