Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions scrape/apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,14 @@ type OAuthApp struct {

// AppManifest represents a GitHub App manifest, used for preconfiguring
// GitHub App configuration.
// c.f. https://docs.github.com/en/apps/sharing-github-apps/registering-a-github-app-from-a-manifest
type AppManifest struct {
// The name of the GitHub App.
Name *string `json:"name,omitempty"`
//Required. The homepage of your GitHub App.
URL *string `json:"url,omitempty"`
// The full URL(s) of the endpoint(s) to authenticate users via the GitHub App (Max: 10).
CallbackURLs []string `json:"callback_urls,omitempty"`
// Required. The configuration of the GitHub App's webhook.
HookAttributes map[string]string `json:"hook_attributes,omitempty"`
// The full URL to redirect to after the person installs the GitHub App.
Expand Down