Brendan Forster

Results 611 comments of Brendan Forster

@hnrkndrssn if you can get me a recent `X-GitHub-Request-Id` I can dig into why these might be failing intermittently. As for the proposed changes, I'm not 100% clear on what...

@ianfixes I'm no longer a maintainer on the project, but I'd suggest pitching the changes as a PR to that page. I also think basic authentication needs to be removed...

I thought I'd be able to leverage our JSON deserializer to convert the list of issues to a string, like this: ```c# var serializer = new Octokit.Internal.SimpleJsonSerializer(); var text =...

This seems plausible according to [the reference source](https://github.com/Microsoft/referencesource/blob/master/mscorlib/system/collections/objectmodel/readonlycollection.cs#L27-L32), but I'm not sure why this code shouldn't return an empty enumerable when there are no values in the response: ``` csharp...

> anyone already working on adding this API? Not that I'm aware of. > Am I misguided in thinking that developing this on a mac would be straightforward? My main...

@istisan it's hard to say what the root cause is without a bit more context but I wonder if your `master` branch has some sort of protection set. ```C# await...

I think this should be resolved by: - Adding `Size` as a property on `Octokit/Models/Response/ReadmeResponse.cs` - Adding `Size` as a property on `Octokit/Models/Response/Readme.cs` and assigning that from the `response` Marking...

@raphagibello I don't believe this is currently available through the GitHub API. Generally these sorts of features are exposed as a [preview API](https://developer.github.com/v3/previews/) first, so until that is available there's...

Seconding what @ryangribble said - this is a limitation of the server-side, and unfortunately due to us sharing models this is giving consumers false hope that it should be available...

@ryangribble that's what i'm leaning towards, but I need to think more on how we can make this maintainable because it could be a lot of work to migrate and...