Browse Source

Add Context field to RepoStatus

Signed-off-by: Ondrej Kupka <ondra.cap@gmail.com>
Ondrej Kupka 12 years ago
committed by Will Norris
parent
commit
a4b0af1698
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      github/repos_statuses.go

+ 3
- 0
github/repos_statuses.go View File

@ -25,6 +25,9 @@ type RepoStatus struct {
// Description is a short high level summary of the status.
Description *string `json:"description,omitempty"`
// A string label to differentiate this status from the statuses of other systems.
Context *string `json:"context,omitempty"`
Creator *User `json:"creator,omitempty"`
CreatedAt *time.Time `json:"created_at,omitempty"`
UpdatedAt *time.Time `json:"updated_at,omitempty"`


Loading…
Cancel
Save