Skip to content
Try Gitea Cloud ☁️ for 30 days → Accelerate your Development & Deploys!

Get user-level runners

GET
/user/actions/runners
curl --request GET \
--url https://gitea.com/api/v1/user/actions/runners \
--header 'Authorization: Basic <credentials>'
disabled
boolean

Filter by disabled status (true or false)

RunnerList

Media typeapplication/json

ActionRunnersResponse returns Runners

object
runners
Array<object>

ActionRunner represents a Runner

object
busy
boolean
disabled
boolean
ephemeral
boolean
id
integer format: int64
labels
Array<object>

ActionRunnerLabel represents a Runner Label

object
id
integer format: int64
name
string
type
string
name
string
status
string
total_count
integer format: int64
Examplegenerated
{
"runners": [
{
"busy": true,
"disabled": true,
"ephemeral": true,
"id": 1,
"labels": [
{
"id": 1,
"name": "example",
"type": "example"
}
],
"name": "example",
"status": "example"
}
],
"total_count": 1
}

APIError is error format response

message
string
url
string

APINotFound is a not found empty response