bbaga
bbaga
Hello, I just wanted to say I've been pulling my hair out to make this work somehow, any sort of fix (or advice) would be much appreciated since I couldn't...
👋 @matusfaro Have you had any luck with your workaround? I tried to incorporate it into the app I'm playing with, but I keep seeing bad credential errors even after...
@matusfaro thank you. The problem was me passing the wrong client (authenticated as app instead of the installation) as the second argument. There is clearly a lot more I have...
Hello, I'm trying to upgrade to the latest version of the library, but then the workaround doesn't work anymore due to the [`root` property becoming `private` on the `GitHubInteractiveObject`](https://github.com/hub4j/github-api/pull/1230/files#diff-8f980eace1389bbec22b15febf799e3d6afe675f84693381b9d978be9872ab24R20). So...
The terrible, terrible hack I came up with: ```java package org.kohsuke.github; import org.kohsuke.github.internal.Previews; public class GitHubClientUtil { public static PagedSearchIterable listRepositories(GitHub gitHub) { GitHubRequest request = ((Requester)((Requester)gitHub.createRequest().withPreview(Previews.MACHINE_MAN)).withUrlPath("/installation/repositories", new String[0])).build(); return...
You just posted your update while I was typing this: > Given that guzzle would be removed from `required` and added to `suggest` instead. This change probably would warrant a...
What I had in mind for the constructor is that we could add a new optional `$client` parameter for the PSR-18 client in the constructor, then when: - `$client !==...
Hello @or-shachar, did you get any feedback from the support that helped your use-case?
I did similar attempts described on the mentioned thread a while back, had no luck. POST/PATCH with `configuration` had no effect. 🤔