-
Notifications
You must be signed in to change notification settings - Fork 40
Open
Description
Motivation
I have a service that integrates localized resource files with repositories on GHE. I have a monorepo case where the octokit-write
limit starts becoming onerous since I need to write about ~200 files per locale. At the current limits, this'll take a second per file, problematic since I'll be committing back 5 locales x ~200 files.
Ask
I'd like to expose some way to configure the bottlenecks created in createGroups
.
For example:
type OctokitOptions = {
...
throttle: {
...
bottleneck: {
globalMaxConcurrent: number
search: {
maxConcurrent: number
minTime: number
}
write: {
maxConcurrent: number
minTime: number
}
notifications: {
maxConcurrent: number
minTime: number
}
}
}
}
Metadata
Metadata
Assignees
Labels
No labels