Keegan Campbell
Keegan Campbell
@felixlut this should be fixed as of [v0.0.23](https://github.com/octokit/go-sdk/releases/tag/v0.0.23)!
Ooh, interesting find. I've confirmed this, and when you remove the `if ("private-user".Equals(value, StringComparison.OrdinalIgnoreCase))` logic, the response gets populated exactly as you'd expect. I'm going to file an issue with...
Reported upstream at https://github.com/microsoft/kiota/issues/4844!
Yep, they're correct. We need to update the schema internally; our team just hasn't had the time yet. We'll keep this open and return to it when we can!
Hi @Hossain2024, you're simply confusing two endpoints. The GetAllIssuesAsync endpoint (returning multiple issues from the GitHub API) returns a list of label strings. The request to return a single issue...
Thank you for reporting. Do you mind sharing a code snippet of the workaround you're using? I wonder if we have a broader pattern of schema errors with discriminator property...
Hi @AlmirJNR! There are a couple good questions here. In general with this library, I don't think you should be deserializing anything yourself; the tool should do it for you....
This is interesting! It's due to an issue in our specification. What's going on is that `issueCommentId` is originally defined as an unsigned integer. You're casting it to an integer...
It looks like in cases of both creating and updating, [we call](https://github.com/integrations/terraform-provider-github/blob/main/github/resource_github_actions_organization_secret.go#L133) `CreateOrUpdateOrgSecret` which routes to [this API reference](https://docs.github.com/en/rest/actions/secrets?apiVersion=2022-11-28#create-or-update-an-organization-secret). Is the suggestion that the provider avoids making this call in...
@GabrielFerrarini unfortunately GitHub's SDK team generally doesn't have the bandwidth to work on this type of issue directly. Do you have the interest or inclination to open up a PR...