Back to the "Repos API" | Back to the navigation
https://docs.github.com/en/rest/reference/actions#list-self-hosted-runners-for-a-repository
$runners = $client->api('repo')->selfHostedRunners()->all('KnpLabs', 'php-github-api');
https://docs.github.com/en/rest/reference/actions#get-a-self-hosted-runner-for-a-repository
$runner = $client->api('repo')->selfHostedRunners()->show('KnpLabs', 'php-github-api', $runnerId);
https://docs.github.com/en/rest/reference/actions#delete-a-self-hosted-runner-from-a-repository
$client->api('repo')->selfHostedRunners()->remove('KnpLabs', 'php-github-api', $runnerId);
https://docs.github.com/en/rest/reference/actions#list-runner-applications-for-a-repository
$applications = $client->api('repo')->selfHostedRunners()->applications('KnpLabs', 'php-github-api');