Interface WorkflowRunsParams

Query parameters for listing workflow runs.

interface WorkflowRunsParams {
    actor?: string;
    branch?: string;
    created?: string;
    event?: string;
    page?: number;
    per_page?: number;
    status?: WorkflowRunStatus | WorkflowRunConclusion;
}

Hierarchy (View Summary)

Properties

actor?: string

Filter by actor (user login) who triggered the run

branch?: string

Filter by branch name

created?: string

Only return runs created after this ISO 8601 date

event?: string

Filter by the triggering event (e.g., 'push', 'pull_request')

page?: number

Page number to retrieve (1-based). Use nextPage from the previous response to paginate forward.

per_page?: number

Maximum number of results per page. GitHub default is 30, maximum is 100.

Filter by run status