Search for repository's action jobs according filter conditions
GET
/repos/{owner}/{repo}/actions/runners/jobs
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”owner
required
string
Owner of the repo
repo
required
string
Name of the repo
Query Parameters
Section titled “Query Parameters”labels
string
A comma separated list of run job labels to search for
Responses
Section titled “Responses”RunJobList is a list of action run jobs
Media typeapplication/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
Examplegenerated
[ { "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 }]APIForbiddenError is a forbidden error response
Media typeapplication/json
object
message
string
url
string
Examplegenerated
{ "message": "example", "url": "example"}