go-github
go-github copied to clipboard
Go library for accessing the GitHub v3 API
resolves #1265 _Note: PubSubHubbub seems to have been renamed WebSub when it was adopted by the W3C. So we use the name WebSub in our code. ref https://github.com/pubsubhubbub/PubSubHubbub_ Added support...
Are there any plans to support [the PubSubHubbub API for creating webhooks](https://developer.github.com/v3/repos/hooks/#pubsubhubbub)? I could try to create a PR for implementing this (I'm hoping to use it for implementing https://github.com/terraform-providers/terraform-provider-github/issues/275)...
Hi, We are migrating from v0.42 to v0.45 and we get the following error when calling `repositories.Edit`: ``` { Response: { Status: "422 Unprocessable Entity", StatusCode: 422, Proto: "HTTP/2.0", ProtoMajor:...
Following up on the issue I created https://github.com/google/go-github/issues/2391. Let me know if there is anything missing or needs fixing. I just tried to follow the patterns from the other types....
Hi team, I am using `github.com/google/go-github/v45 v45.1.0` and I am getting the error `=unknown X-Github-Event in message: code_scanning_alert` when running `ParseWebHook`. The alert type was already added in https://github.com/google/go-github/pull/2311 so...
Fix TextMatch Option doesn't work when search type is commits topics repositories or issues (#2385) Fixes: #2385.
when i use `Search.Repositories`, set `TextMatch = true`, but it doesn't work this is my code: ```Go repos, resp, err = client.Search.Repositories(ctx, query, &github.SearchOptions{ Sort: sort, Order: order, TextMatch: true,...
I want to use this package to au-create the issue in my repo. but my env is private, and we provide a proxy to access the internet. so I am...
The previous PR implementing the GitHub SCIM API lacked a way to access the models returned by the API calls. This commit adds those missing models along with tests. References...
Hi Team, I have been tying to understand how to fetch contents from a commit and im unable to do so. it returns `files []*Commitfiles` which is always empty. `commits,...