Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Commit

Permalink
Add missing url / RepositoryURL to sdk
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Ellis (VMware) <[email protected]>
  • Loading branch information
alexellis committed Oct 29, 2018
1 parent dfe64e4 commit 72846e8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions sdk/events_scm.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ package sdk

// PushEventRepository represents the repository from a push event
type PushEventRepository struct {
Name string `json:"name"`
FullName string `json:"full_name"`
CloneURL string `json:"clone_url"`
Private bool `json:"private"`
ID int64 `json:"id"`
Name string `json:"name"`
FullName string `json:"full_name"`
CloneURL string `json:"clone_url"`
Private bool `json:"private"`
ID int64 `json:"id"`
RepositoryURL string `json:"url"`

Owner Owner `json:"owner"`
}
Expand Down

0 comments on commit 72846e8

Please sign in to comment.