mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-23 15:50:48 +00:00
30 lines
426 B
Java
30 lines
426 B
Java
package org.kohsuke.github;
|
|
|
|
/**
|
|
* Hook event type.
|
|
*
|
|
* See http://developer.github.com/v3/events/types/
|
|
*
|
|
* @author Kohsuke Kawaguchi
|
|
*/
|
|
public enum GHEvent {
|
|
COMMIT_COMMENT,
|
|
CREATE,
|
|
DELETE,
|
|
DOWNLOAD,
|
|
FOLLOW,
|
|
FORK,
|
|
FORK_APPLY,
|
|
GIST,
|
|
GOLLUM,
|
|
ISSUE_COMMENT,
|
|
ISSUES,
|
|
MEMBER,
|
|
PUBLIC,
|
|
PULL_REQUEST,
|
|
PULL_REQUEST_REVIEW_COMMENT,
|
|
PUSH,
|
|
TEAM_ADD,
|
|
WATCH
|
|
}
|