Skip to content

List a repository's action tasks

GET
/repos/{owner}/{repo}/actions/tasks
owner
required
string

Owner of the repo

repo
required
string

Name of the repo

page
integer

Page number of results to return (1-based)

limit
integer

Page size of results, default maximum page size is 50

status
Array<string>
Allowed values: unknown waiting running success failure cancelled skipped blocked

Returns workflow tasks with the check run status or conclusion that is specified. For example, a conclusion can be success or a status can be in_progress.

TasksList

Media type application/json

ActionTaskResponse returns a ActionTask

object
total_count
integer format: int64
workflow_runs
Array<object>

ActionTask represents a ActionTask

object
created_at
string format: date-time
display_title
string
event
string
head_branch
string
head_sha
string
id
integer format: int64
name
string
run_number
integer format: int64
run_started_at
string format: date-time
status
string
updated_at
string format: date-time
url
string
workflow_id
string
Example generated
{
"total_count": 1,
"workflow_runs": [
{
"created_at": "2026-04-15T12:00:00Z",
"display_title": "example",
"event": "example",
"head_branch": "example",
"head_sha": "example",
"id": 1,
"name": "example",
"run_number": 1,
"run_started_at": "2026-04-15T12:00:00Z",
"status": "example",
"updated_at": "2026-04-15T12:00:00Z",
"url": "example",
"workflow_id": "example"
}
]
}

APIError is error format response

Media type application/json

APIError is an api error with a message

object
message
string
url
string
Example generated
{
"message": "example",
"url": "example"
}

APIForbiddenError is a forbidden error response

Media type application/json
object
message
string
url
string
Example generated
{
"message": "example",
"url": "example"
}

APINotFound is a not found error response

Media type application/json
object
errors
Array<string>
message
string
url
string
Example generated
{
"errors": [
"example"
],
"message": "example",
"url": "example"
}

APIConflict is a conflict empty response

Media type application/json

APIValidationError is error format response related to input validation

Media type application/json
object
message
string
url
string
Example generated
{
"message": "example",
"url": "example"
}