Added more info to label event to test functionality

This commit is contained in:
Jackie Elliott 2018-06-11 16:02:50 -07:00
Родитель 699061c80a
Коммит 96b2685210
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -38,6 +38,10 @@ func EventListen(c buffalo.Context) error {
repoName = *e.Repo.FullName
fmt.Printf("Repository Name: %s", *e.Repo.FullName)
}
case *github.LabelEvent:
if e.Action != nil {
repoName = *e.Repo.FullName
}
default:
log.Printf("unknown event type %s\n", github.WebHookType(request))
//return err