Update deps

This commit is contained in:
Jeff Mitchell
2016-12-01 14:46:57 -05:00
parent 361540ae62
commit d79afd9e24
117 changed files with 6651 additions and 876 deletions

View File

@@ -55,6 +55,7 @@ var (
"milestone": "MilestoneEvent",
"page_build": "PageBuildEvent",
"public": "PublicEvent",
"pull_request_review": "PullRequestReviewEvent",
"pull_request_review_comment": "PullRequestReviewCommentEvent",
"pull_request": "PullRequestEvent",
"push": "PushEvent",
@@ -170,9 +171,9 @@ func WebHookType(r *http.Request) string {
// event, err := github.ParseWebHook(github.WebHookType(r), payload)
// if err != nil { ... }
// switch event := event.(type) {
// case CommitCommentEvent:
// case *github.CommitCommentEvent:
// processCommitCommentEvent(event)
// case CreateEvent:
// case *github.CreateEvent:
// processCreateEvent(event)
// ...
// }