Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/kd_clients/core/Enums.ts>WorkflowRunStatus

Various types of HTTP clients for misc uses. This is used in the organization's infrastructure.
Go to Latest
enum WorkflowRunStatus
import { WorkflowRunStatus } from "https://deno.land/x/kd_clients@v0.0.5/core/Enums.ts";

Members

actionRequired = "action_required"

The workflow requires action.

any = "*"

Any workflow state.

cancelled = "cancelled"

The workflow as cancelled.

completed = "completed"

The workflow has been completed.

failure = "failure"

The workflow failed.

inProgress = "in_progress"

The workflow is currently in progress.

neutral = "neutral"

The workflow is neutral.

pending = "pending"

The workflow is currently pending.

queued = "queued"

The workflow has been queued.

requested = "requested"

The workflow has been requested.

skipped = "skipped"

The workflow was skipped.

stale = "stale"

The workflow is stale.

success = "success"

The workflow was successful.

timedOut = "timed_out"

The workflow timed out.

waiting = "waiting"

The workflow is currently waiting.