-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into issue_3225
- Loading branch information
Showing
54 changed files
with
356 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# go-github # | ||
|
||
[![go-github release (latest SemVer)](https://img.shields.io/github/v/release/google/go-github?sort=semver)](https://github.com/google/go-github/releases) | ||
[![GoDoc](https://img.shields.io/static/v1?label=godoc&message=reference&color=blue)](https://pkg.go.dev/github.com/google/go-github/v63/github) | ||
[![GoDoc](https://img.shields.io/static/v1?label=godoc&message=reference&color=blue)](https://pkg.go.dev/github.com/google/go-github/v64/github) | ||
[![Test Status](https://github.com/google/go-github/workflows/tests/badge.svg)](https://github.com/google/go-github/actions?query=workflow%3Atests) | ||
[![Test Coverage](https://codecov.io/gh/google/go-github/branch/master/graph/badge.svg)](https://codecov.io/gh/google/go-github) | ||
[![Discuss at [email protected]](https://img.shields.io/badge/discuss-go--github%40googlegroups.com-blue.svg)](https://groups.google.com/group/go-github) | ||
|
@@ -24,29 +24,29 @@ If you're interested in using the [GraphQL API v4][], the recommended library is | |
go-github is compatible with modern Go releases in module mode, with Go installed: | ||
|
||
```bash | ||
go get github.com/google/go-github/v63 | ||
go get github.com/google/go-github/v64 | ||
``` | ||
|
||
will resolve and add the package to the current development module, along with its dependencies. | ||
|
||
Alternatively the same can be achieved if you use import in a package: | ||
|
||
```go | ||
import "github.com/google/go-github/v63/github" | ||
import "github.com/google/go-github/v64/github" | ||
``` | ||
|
||
and run `go get` without parameters. | ||
|
||
Finally, to use the top-of-trunk version of this repo, use the following command: | ||
|
||
```bash | ||
go get github.com/google/go-github/v63@master | ||
go get github.com/google/go-github/v64@master | ||
``` | ||
|
||
## Usage ## | ||
|
||
```go | ||
import "github.com/google/go-github/v63/github" // with go modules enabled (GO111MODULE=on or outside GOPATH) | ||
import "github.com/google/go-github/v64/github" // with go modules enabled (GO111MODULE=on or outside GOPATH) | ||
import "github.com/google/go-github/github" // with go modules disabled | ||
``` | ||
|
||
|
@@ -119,7 +119,7 @@ import ( | |
"net/http" | ||
|
||
"github.com/bradleyfalzon/ghinstallation/v2" | ||
"github.com/google/go-github/v63/github" | ||
"github.com/google/go-github/v64/github" | ||
) | ||
|
||
func main() { | ||
|
@@ -153,7 +153,7 @@ import ( | |
"os" | ||
"strconv" | ||
|
||
"github.com/google/go-github/v63/github" | ||
"github.com/google/go-github/v64/github" | ||
"github.com/jferrl/go-githubauth" | ||
"golang.org/x/oauth2" | ||
) | ||
|
@@ -361,7 +361,7 @@ For complete usage of go-github, see the full [package docs][]. | |
|
||
[GitHub API v3]: https://docs.github.com/en/rest | ||
[personal access token]: https://github.com/blog/1509-personal-api-tokens | ||
[package docs]: https://pkg.go.dev/github.com/google/go-github/v63/github | ||
[package docs]: https://pkg.go.dev/github.com/google/go-github/v64/github | ||
[GraphQL API v4]: https://developer.github.com/v4/ | ||
[shurcooL/githubv4]: https://github.com/shurcooL/githubv4 | ||
[GitHub webhook events]: https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads | ||
|
@@ -434,6 +434,7 @@ Versions prior to 48.2.0 are not listed. | |
|
||
| go-github Version | GitHub v3 API Version | | ||
| ----------------- | --------------------- | | ||
| 64.0.0 | 2022-11-28 | | ||
| 63.0.0 | 2022-11-28 | | ||
| 62.0.0 | 2022-11-28 | | ||
| 61.0.0 | 2022-11-28 | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,46 +77,48 @@ type InstallationTokenListRepoOptions struct { | |
// https://docs.github.com/[email protected]/rest/apps#create-an-installation-access-token-for-an-app | ||
// https://docs.github.com/rest/apps#create-an-installation-access-token-for-an-app | ||
type InstallationPermissions struct { | ||
Actions *string `json:"actions,omitempty"` | ||
ActionsVariables *string `json:"actions_variables,omitempty"` | ||
Administration *string `json:"administration,omitempty"` | ||
Blocking *string `json:"blocking,omitempty"` | ||
Checks *string `json:"checks,omitempty"` | ||
Contents *string `json:"contents,omitempty"` | ||
ContentReferences *string `json:"content_references,omitempty"` | ||
Deployments *string `json:"deployments,omitempty"` | ||
Emails *string `json:"emails,omitempty"` | ||
Environments *string `json:"environments,omitempty"` | ||
Followers *string `json:"followers,omitempty"` | ||
Issues *string `json:"issues,omitempty"` | ||
Metadata *string `json:"metadata,omitempty"` | ||
Members *string `json:"members,omitempty"` | ||
OrganizationAdministration *string `json:"organization_administration,omitempty"` | ||
OrganizationCustomProperties *string `json:"organization_custom_properties,omitempty"` | ||
OrganizationCustomRoles *string `json:"organization_custom_roles,omitempty"` | ||
OrganizationCustomOrgRoles *string `json:"organization_custom_org_roles,omitempty"` | ||
OrganizationHooks *string `json:"organization_hooks,omitempty"` | ||
OrganizationPackages *string `json:"organization_packages,omitempty"` | ||
OrganizationPlan *string `json:"organization_plan,omitempty"` | ||
OrganizationPreReceiveHooks *string `json:"organization_pre_receive_hooks,omitempty"` | ||
OrganizationProjects *string `json:"organization_projects,omitempty"` | ||
OrganizationSecrets *string `json:"organization_secrets,omitempty"` | ||
OrganizationSelfHostedRunners *string `json:"organization_self_hosted_runners,omitempty"` | ||
OrganizationUserBlocking *string `json:"organization_user_blocking,omitempty"` | ||
Packages *string `json:"packages,omitempty"` | ||
Pages *string `json:"pages,omitempty"` | ||
PullRequests *string `json:"pull_requests,omitempty"` | ||
RepositoryHooks *string `json:"repository_hooks,omitempty"` | ||
RepositoryProjects *string `json:"repository_projects,omitempty"` | ||
RepositoryPreReceiveHooks *string `json:"repository_pre_receive_hooks,omitempty"` | ||
Secrets *string `json:"secrets,omitempty"` | ||
SecretScanningAlerts *string `json:"secret_scanning_alerts,omitempty"` | ||
SecurityEvents *string `json:"security_events,omitempty"` | ||
SingleFile *string `json:"single_file,omitempty"` | ||
Statuses *string `json:"statuses,omitempty"` | ||
TeamDiscussions *string `json:"team_discussions,omitempty"` | ||
VulnerabilityAlerts *string `json:"vulnerability_alerts,omitempty"` | ||
Workflows *string `json:"workflows,omitempty"` | ||
Actions *string `json:"actions,omitempty"` | ||
ActionsVariables *string `json:"actions_variables,omitempty"` | ||
Administration *string `json:"administration,omitempty"` | ||
Blocking *string `json:"blocking,omitempty"` | ||
Checks *string `json:"checks,omitempty"` | ||
Contents *string `json:"contents,omitempty"` | ||
ContentReferences *string `json:"content_references,omitempty"` | ||
Deployments *string `json:"deployments,omitempty"` | ||
Emails *string `json:"emails,omitempty"` | ||
Environments *string `json:"environments,omitempty"` | ||
Followers *string `json:"followers,omitempty"` | ||
Issues *string `json:"issues,omitempty"` | ||
Metadata *string `json:"metadata,omitempty"` | ||
Members *string `json:"members,omitempty"` | ||
OrganizationAdministration *string `json:"organization_administration,omitempty"` | ||
OrganizationCustomProperties *string `json:"organization_custom_properties,omitempty"` | ||
OrganizationCustomRoles *string `json:"organization_custom_roles,omitempty"` | ||
OrganizationCustomOrgRoles *string `json:"organization_custom_org_roles,omitempty"` | ||
OrganizationHooks *string `json:"organization_hooks,omitempty"` | ||
OrganizationPackages *string `json:"organization_packages,omitempty"` | ||
OrganizationPersonalAccessTokens *string `json:"organization_personal_access_tokens,omitempty"` | ||
OrganizationPersonalAccessTokenRequests *string `json:"organization_personal_access_token_requests,omitempty"` | ||
OrganizationPlan *string `json:"organization_plan,omitempty"` | ||
OrganizationPreReceiveHooks *string `json:"organization_pre_receive_hooks,omitempty"` | ||
OrganizationProjects *string `json:"organization_projects,omitempty"` | ||
OrganizationSecrets *string `json:"organization_secrets,omitempty"` | ||
OrganizationSelfHostedRunners *string `json:"organization_self_hosted_runners,omitempty"` | ||
OrganizationUserBlocking *string `json:"organization_user_blocking,omitempty"` | ||
Packages *string `json:"packages,omitempty"` | ||
Pages *string `json:"pages,omitempty"` | ||
PullRequests *string `json:"pull_requests,omitempty"` | ||
RepositoryHooks *string `json:"repository_hooks,omitempty"` | ||
RepositoryProjects *string `json:"repository_projects,omitempty"` | ||
RepositoryPreReceiveHooks *string `json:"repository_pre_receive_hooks,omitempty"` | ||
Secrets *string `json:"secrets,omitempty"` | ||
SecretScanningAlerts *string `json:"secret_scanning_alerts,omitempty"` | ||
SecurityEvents *string `json:"security_events,omitempty"` | ||
SingleFile *string `json:"single_file,omitempty"` | ||
Statuses *string `json:"statuses,omitempty"` | ||
TeamDiscussions *string `json:"team_discussions,omitempty"` | ||
VulnerabilityAlerts *string `json:"vulnerability_alerts,omitempty"` | ||
Workflows *string `json:"workflows,omitempty"` | ||
} | ||
|
||
// InstallationRequest represents a pending GitHub App installation request. | ||
|
Oops, something went wrong.