Create a remove token for a repository

Returns a token that you can pass to remove a self-hosted runner from a repository. The token expires after one hour. You must authenticate using an access token with the repo scope to use this endpoint.

POST /repos/:owner/:repo/actions/runners/remove-token

Example using remove token

Remove your self-hosted runner from a repository, replacing TOKEN with the remove token provided by this endpoint.

./config.sh remove --token TOKEN

Response

Status: 201 Created
{
  "token": "AABF3JGZDX3P5PMEXLND6TS6FCWO6",
  "expires_at": "2020-01-29T12:13:35.123-08:00"
}