Files
github-api/src/main/java/org/kohsuke/github/GHCommitState.java
2012-09-04 10:40:32 -07:00

12 lines
193 B
Java

package org.kohsuke.github;
/**
* Represents the state of commit
*
* @author Kohsuke Kawaguchi
* @see GHCommitStatus
*/
public enum GHCommitState {
PENDING, SUCCESS, ERROR, FAILURE
}