Skip to content

Commit 34559d8

Browse files
authored
fix: machine-man preview graduated (#185)
1 parent 44891b0 commit 34559d8

18 files changed

+326
-297
lines changed

docs/actions/createRegistrationTokenForOrg.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@ type: API method
88

99
# Create a registration token for an organization
1010

11-
**Warning:** The self-hosted runners API for organizations is currently in public beta and subject to change.
11+
Returns a token that you can pass to the `config` script. The token expires after one hour.
1212

13-
Returns a token that you can pass to the `config` script. The token expires after one hour. You must authenticate
14-
using an access token with the `admin:org` scope to use this endpoint.
13+
You must authenticate using an access token with the `admin:org` scope to use this endpoint.
1514

1615
#### Example using registration token
1716

docs/actions/createRemoveTokenForOrg.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ type: API method
88

99
# Create a remove token for an organization
1010

11-
**Warning:** The self-hosted runners API for organizations is currently in public beta and subject to change.
11+
Returns a token that you can pass to the `config` script to remove a self-hosted runner from an organization. The token expires after one hour.
1212

13-
Returns a token that you can pass to the `config` script to remove a self-hosted runner from an organization. The
14-
token expires after one hour. You must authenticate using an access token with the `admin:org` scope to use this
15-
endpoint.
13+
You must authenticate using an access token with the `admin:org` scope to use this endpoint.
1614

1715
#### Example using remove token
1816

docs/actions/deleteSelfHostedRunnerFromOrg.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ type: API method
88

99
# Delete a self-hosted runner from an organization
1010

11-
**Warning:** The self-hosted runners API for organizations is currently in public beta and subject to change.
11+
Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
1212

13-
Forces the removal of a self-hosted runner from an organization. You can use this endpoint to completely remove the runner when the machine you were using no longer exists. You must authenticate using an access token with the `admin:org` scope to use this endpoint.
13+
You must authenticate using an access token with the `admin:org` scope to use this endpoint.
1414

1515
```js
1616
octokit.actions.deleteSelfHostedRunnerFromOrg({
@@ -35,6 +35,8 @@ octokit.actions.deleteSelfHostedRunnerFromOrg({
3535
</td></tr>
3636
<tr><td>runner_id</td><td>yes</td><td>
3737

38+
Unique identifier of the self-hosted runner.
39+
3840
</td></tr>
3941
</tbody>
4042
</table>

docs/actions/deleteSelfHostedRunnerFromRepo.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ type: API method
88

99
# Delete a self-hosted runner from a repository
1010

11-
Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists. You must authenticate using an access token with the `repo` scope to use this endpoint.
11+
Forces the removal of a self-hosted runner from a repository. You can use this endpoint to completely remove the runner when the machine you were using no longer exists.
12+
13+
You must authenticate using an access token with the `repo`
14+
scope to use this endpoint.
1215

1316
```js
1417
octokit.actions.deleteSelfHostedRunnerFromRepo({
@@ -37,6 +40,8 @@ octokit.actions.deleteSelfHostedRunnerFromRepo({
3740
</td></tr>
3841
<tr><td>runner_id</td><td>yes</td><td>
3942

43+
Unique identifier of the self-hosted runner.
44+
4045
</td></tr>
4146
</tbody>
4247
</table>

docs/actions/getSelfHostedRunnerForOrg.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ type: API method
88

99
# Get a self-hosted runner for an organization
1010

11-
**Warning:** The self-hosted runners API for organizations is currently in public beta and subject to change.
11+
Gets a specific self-hosted runner configured in an organization.
1212

13-
Gets a specific self-hosted runner for an organization. You must authenticate using an access token with the `admin:org` scope to use this endpoint.
13+
You must authenticate using an access token with the `admin:org` scope to use this endpoint.
1414

1515
```js
1616
octokit.actions.getSelfHostedRunnerForOrg({
@@ -35,6 +35,8 @@ octokit.actions.getSelfHostedRunnerForOrg({
3535
</td></tr>
3636
<tr><td>runner_id</td><td>yes</td><td>
3737

38+
Unique identifier of the self-hosted runner.
39+
3840
</td></tr>
3941
</tbody>
4042
</table>

docs/actions/getSelfHostedRunnerForRepo.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ type: API method
88

99
# Get a self-hosted runner for a repository
1010

11-
Gets a specific self-hosted runner. You must authenticate using an access token with the `repo` scope to use this endpoint.
11+
Gets a specific self-hosted runner configured in a repository.
12+
13+
You must authenticate using an access token with the `repo` scope to use this
14+
endpoint.
1215

1316
```js
1417
octokit.actions.getSelfHostedRunnerForRepo({
@@ -37,6 +40,8 @@ octokit.actions.getSelfHostedRunnerForRepo({
3740
</td></tr>
3841
<tr><td>runner_id</td><td>yes</td><td>
3942

43+
Unique identifier of the self-hosted runner.
44+
4045
</td></tr>
4146
</tbody>
4247
</table>

docs/actions/listRunnerApplicationsForOrg.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ type: API method
88

99
# List runner applications for an organization
1010

11-
**Warning:** The self-hosted runners API for organizations is currently in public beta and subject to change.
11+
Lists binaries for the runner application that you can download and run.
1212

13-
Lists binaries for the runner application that you can download and run. You must authenticate using an access token with the `admin:org` scope to use this endpoint.
13+
You must authenticate using an access token with the `admin:org` scope to use this endpoint.
1414

1515
```js
1616
octokit.actions.listRunnerApplicationsForOrg({

docs/actions/listRunnerApplicationsForRepo.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ type: API method
88

99
# List runner applications for a repository
1010

11-
Lists binaries for the runner application that you can download and run. You must authenticate using an access token with the `repo` scope to use this endpoint.
11+
Lists binaries for the runner application that you can download and run.
12+
13+
You must authenticate using an access token with the `repo` scope to use this endpoint.
1214

1315
```js
1416
octokit.actions.listRunnerApplicationsForRepo({

docs/actions/listSelfHostedRunnersForOrg.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ type: API method
88

99
# List self-hosted runners for an organization
1010

11-
**Warning:** The self-hosted runners API for organizations is currently in public beta and subject to change.
11+
Lists all self-hosted runners configured in an organization.
1212

13-
Lists all self-hosted runners for an organization. You must authenticate using an access token with the `admin:org` scope to use this endpoint.
13+
You must authenticate using an access token with the `admin:org` scope to use this endpoint.
1414

1515
```js
1616
octokit.actions.listSelfHostedRunnersForOrg({

docs/actions/listSelfHostedRunnersForRepo.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ type: API method
88

99
# List self-hosted runners for a repository
1010

11-
Lists all self-hosted runners for a repository. You must authenticate using an access token with the `repo` scope to use this endpoint.
11+
Lists all self-hosted runners configured in a repository.
12+
You must authenticate using an access token with the `repo` scope to use this endpoint.
1213

1314
```js
1415
octokit.actions.listSelfHostedRunnersForRepo({

0 commit comments

Comments
 (0)