mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-19 15:50:28 +00:00
9 lines
146 B
Java
9 lines
146 B
Java
package org.kohsuke.github;
|
|
|
|
/**
|
|
* Represents the state of deployment
|
|
*/
|
|
public enum GHDeploymentState {
|
|
PENDING, SUCCESS, ERROR, FAILURE
|
|
}
|