mirror of
https://github.com/jlengrand/github-api.git
synced 2026-04-05 08:21:21 +00:00
41 lines
885 B
Java
41 lines
885 B
Java
package org.kohsuke.github;
|
|
|
|
import org.kohsuke.github.internal.Previews;
|
|
|
|
/**
|
|
* Represents the state of deployment
|
|
*/
|
|
public enum GHDeploymentState {
|
|
PENDING,
|
|
SUCCESS,
|
|
ERROR,
|
|
FAILURE,
|
|
|
|
/**
|
|
* The state of the deployment currently reflects it's in progress.
|
|
*
|
|
* @deprecated until preview feature has graduated to stable
|
|
*/
|
|
@Deprecated
|
|
@Preview(Previews.FLASH)
|
|
IN_PROGRESS,
|
|
|
|
/**
|
|
* The state of the deployment currently reflects it's queued up for processing.
|
|
*
|
|
* @deprecated until preview feature has graduated to stable
|
|
*/
|
|
@Deprecated
|
|
@Preview(Previews.FLASH)
|
|
QUEUED,
|
|
|
|
/**
|
|
* The state of the deployment currently reflects it's no longer active.
|
|
*
|
|
* @deprecated until preview feature has graduated to stable
|
|
*/
|
|
@Deprecated
|
|
@Preview(Previews.ANT_MAN)
|
|
INACTIVE
|
|
}
|