r-lib / gh

Minimalistic GitHub API client in R
https://gh.r-lib.org
Other
223 stars 52 forks source link

Use link url with parsing + building url #206

Closed hadley closed 2 months ago

hadley commented 2 months ago

This fixes the case where the GitHub replaces a space with +, which then gets re-encoded to %2B, causing the page to return no results.

hadley commented 2 months ago

The failures are because I'm hitting a secondary rate limit, presumably because the tests are running in parallel. My simple proposed fix for this would be to do skip_on_os("linux") but maybe there's a more elegant way to only run on one job?

gaborcsardi commented 2 months ago

Thanks!