mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-22 00:11:26 +00:00
12 lines
193 B
Java
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
|
|
}
|