Max Stoiber
Max Stoiber
I think another improvement would be the GitHub utils caching results from the API. We run the `no-console` and `flow` plugins, and both of them use `github.utils.fileContents` method to get...
I guess maybe we're already hitting the rate limits on that PR by even fetching them once?
It'd be neat if `fileContents` just did that out of the box?
We might be able to just wrap it in [`p-limit`](https://github.com/sindresorhus/p-limit) with a limit at something like 25 so it's not doing 200 calls at the same time. I'm not sure...
I think it's probably actually easier to just do it in Danger, it should just be a matter of wrapping the `fetch` call in `this.api` in `GitHubAPI.ts` with `limit(() =>...
👉 #582
@arianon thank you so much, the workaround worked perfectly! :100: withspectrum/spectrum#3855
Ahhh I didn't see this before setting up my entire repo with bolt, but now I can't publish anything since I have 2FA enabled :cry: Any workarounds? Probably also related...
This workaround worked! :tada: https://github.com/lerna/lerna/issues/1091 ``` NPM_CONFIG_OTP=123456 bolt publish ```
Strongly agreed! I think of this feature as "do the tedious 80% automatically and let the user manually annotate the remaining 20%", rather than "do 100% automatically reliably everytime" which...