GET
github_actions_list_workflow_runs.py
from charter.packs import github
result = await github.actions_list_workflow_runs.ainvoke({"owner": ..., "repo": ...})
Requires
repo, read:user. Pages by number: page with per_page.Path parameters
| Field | Type | Description |
|---|---|---|
owner * | string | The account owner of the repository. The name is not case sensitive. |
repo * | string | The name of the repository without the .git extension. The name is not case sensitive. |
Query parameters
| Field | Type | Description |
|---|---|---|
perPage | integer | The number of results per page (max 100). Defaults to 30. ≥ 1; ≤ 100; defaults to 30 |
page | integer | The page number of the results to fetch. Defaults to 1. ≥ 1; defaults to 1 |
status | WorkflowRunStatusFilter | Match a run’s status or its conclusion. ‘in_progress’ and ‘queued’ are statuses; ‘success’, ‘failure’ and ‘cancelled’ are conclusions. |
branch | string | Only runs for pushes to this branch. |
event | string | Only runs triggered by this event, such as ‘push’ or ‘pull_request’. |
actor | string | Only runs for pushes by this username. |
headSha | string | Only runs for this commit SHA. |
created | string | Only runs created in this window, in GitHub’s search syntax: ’>=2026-01-01’ or ‘2026-01-01..2026-02-01’. |
excludePullRequests | boolean | Leave the pull requests off each run. They are the bulkiest part of the response and rarely the reason for listing runs. |