Warning: The self-hosted runners API for organizations is currently in public beta and subject to change.
Lists all self-hosted runners for an organization. You must authenticate using an access token with the admin:org scope to use this endpoint.
GET /orgs/:org/actions/runners
Status: 200 OK
Link: <https://api.github.com/resource?page=2>; rel="next",
<https://api.github.com/resource?page=5>; rel="last"
{
"total_count": 2,
"runners": [
{
"id": 23,
"name": "MBP",
"os": "macos",
"status": "online"
},
{
"id": 24,
"name": "iMac",
"os": "macos",
"status": "offline"
}
]
}