Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added all possible status values from GH api spec. #1885

Merged
merged 2 commits into from
Jul 1, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions src/main/java/org/kohsuke/github/GHWorkflowRun.java
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,28 @@ public static enum Status {
IN_PROGRESS,
/** The completed. */
COMPLETED,
/** The action required. */
ACTION_REQUIRED,
/** The cancelled. */
CANCELLED,
/** The failure. */
FAILURE,
/** The neutral. */
NEUTRAL,
/** The skipped. */
SKIPPED,
/** The stale. */
STALE,
/** The success. */
SUCCESS,
/** The timed out. */
TIMED_OUT,
/** The requested. */
REQUESTED,
/** The waiting. */
WAITING,
/** The pending. */
PENDING,
/** The unknown. */
UNKNOWN;

Expand Down