Skip to content

Search for user's action jobs according filter conditions

GET
/user/actions/runners/jobs
labels
string

A comma separated list of run job labels to search for

RunJobList is a list of action run jobs

Media type application/json
Array<object>

ActionRunJob represents a job of a run

object
attempt

How many times the job has been attempted including the current attempt.

integer format: int64
handle

Opaque identifier that uniquely identifies a single attempt of a job.

string
id

Identifier of this job.

integer format: int64
name

The action run job name

string
needs

The action run job needed ids

Array<string>
owner_id

The owner id

integer format: int64
repo_id

The repository id

integer format: int64
run_id

Identifier of the workflow run this job belongs to.

integer format: int64
runs_on

The action run job labels to run on

Array<string>
status

The action run job status

string
task_id

The action run job latest task id

integer format: int64
Example generated
[
{
"attempt": 1,
"handle": "example",
"id": 1,
"name": "example",
"needs": [
"example"
],
"owner_id": 1,
"repo_id": 1,
"run_id": 1,
"runs_on": [
"example"
],
"status": "example",
"task_id": 1
}
]

APIUnauthorizedError is a unauthorized error response

Media type application/json
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"
}