View Source CircleCI.Workflow (CircleCI API Client v0.1.0)
Provides API endpoints related to workflow
Summary
Types
@type get_workflow_by_id_default_json_resp() :: %{message: String.t() | nil}
@type list_workflow_jobs_200_json_resp() :: %{ items: [CircleCI.Job.t()], next_page_token: String.t() | nil }
@type list_workflow_jobs_default_json_resp() :: %{message: String.t() | nil}
@type t() :: %CircleCI.Workflow{ canceled_by: String.t() | nil, created_at: DateTime.t(), errored_by: String.t() | nil, id: String.t(), name: String.t(), pipeline_id: String.t(), pipeline_number: integer(), project_slug: String.t(), started_by: String.t(), status: String.t(), stopped_at: DateTime.t() | nil, tag: String.t() | nil }
Functions
Get a workflow
Returns summary fields of a workflow by ID.
Get a workflow's jobs
Returns a sequence of jobs for a workflow.