Skip to content

Commit e94662f

Browse files
authored
feat: new /orgs/{org}/actions/runners/generate-jitconfig endpoint, and documentation updates (#645)
1 parent 917af29 commit e94662f

File tree

454 files changed

+8379
-1028
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

454 files changed

+8379
-1028
lines changed

docs/actions/addCustomLabelsToSelfHostedRunnerForRepo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The account owner of the repository. The name is not case sensitive.
4040
</td></tr>
4141
<tr><td>repo</td><td>yes</td><td>
4242

43-
The name of the repository. The name is not case sensitive.
43+
The name of the repository without the `.git` extension. The name is not case sensitive.
4444

4545
</td></tr>
4646
<tr><td>runner_id</td><td>yes</td><td>

docs/actions/approveWorkflowRun.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The account owner of the repository. The name is not case sensitive.
3838
</td></tr>
3939
<tr><td>repo</td><td>yes</td><td>
4040

41-
The name of the repository. The name is not case sensitive.
41+
The name of the repository without the `.git` extension. The name is not case sensitive.
4242

4343
</td></tr>
4444
<tr><td>run_id</td><td>yes</td><td>

docs/actions/cancelWorkflowRun.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The account owner of the repository. The name is not case sensitive.
3636
</td></tr>
3737
<tr><td>repo</td><td>yes</td><td>
3838

39-
The name of the repository. The name is not case sensitive.
39+
The name of the repository without the `.git` extension. The name is not case sensitive.
4040

4141
</td></tr>
4242
<tr><td>run_id</td><td>yes</td><td>

docs/actions/createOrUpdateEnvironmentSecret.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Creates or updates an environment secret with an encrypted value. Encrypt your s
1313
token with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use
1414
this endpoint.
1515

16-
#### Example encrypting a secret using Node.js
16+
**Example encrypting a secret using Node.js**
1717

1818
Encrypt your secret using the [libsodium-wrappers](https://www.npmjs.com/package/libsodium-wrappers) library.
1919

@@ -38,7 +38,7 @@ sodium.ready.then(() => {
3838
});
3939
```
4040

41-
#### Example encrypting a secret using Python
41+
**Example encrypting a secret using Python**
4242

4343
Encrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.
4444

@@ -54,7 +54,7 @@ def encrypt(public_key: str, secret_value: str) -> str:
5454
return b64encode(encrypted).decode("utf-8")
5555
```
5656

57-
#### Example encrypting a secret using C#
57+
**Example encrypting a secret using C#**
5858

5959
Encrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.
6060

@@ -67,7 +67,7 @@ var sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey
6767
Console.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));
6868
```
6969

70-
#### Example encrypting a secret using Ruby
70+
**Example encrypting a secret using Ruby**
7171

7272
Encrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.
7373

docs/actions/createOrUpdateRepoSecret.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Creates or updates a repository secret with an encrypted value. Encrypt your sec
1313
token with the `repo` scope to use this endpoint. GitHub Apps must have the `secrets` repository permission to use
1414
this endpoint.
1515

16-
#### Example encrypting a secret using Node.js
16+
**Example encrypting a secret using Node.js**
1717

1818
Encrypt your secret using the [libsodium-wrappers](https://www.npmjs.com/package/libsodium-wrappers) library.
1919

@@ -38,7 +38,7 @@ sodium.ready.then(() => {
3838
});
3939
```
4040

41-
#### Example encrypting a secret using Python
41+
**Example encrypting a secret using Python**
4242

4343
Encrypt your secret using [pynacl](https://pynacl.readthedocs.io/en/latest/public/#nacl-public-sealedbox) with Python 3.
4444

@@ -54,7 +54,7 @@ def encrypt(public_key: str, secret_value: str) -> str:
5454
return b64encode(encrypted).decode("utf-8")
5555
```
5656

57-
#### Example encrypting a secret using C#
57+
**Example encrypting a secret using C#**
5858

5959
Encrypt your secret using the [Sodium.Core](https://www.nuget.org/packages/Sodium.Core/) package.
6060

@@ -67,7 +67,7 @@ var sealedPublicKeyBox = Sodium.SealedPublicKeyBox.Create(secretValue, publicKey
6767
Console.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));
6868
```
6969

70-
#### Example encrypting a secret using Ruby
70+
**Example encrypting a secret using Ruby**
7171

7272
Encrypt your secret using the [rbnacl](https://github.com/RubyCrypto/rbnacl) gem.
7373

@@ -111,7 +111,7 @@ The account owner of the repository. The name is not case sensitive.
111111
</td></tr>
112112
<tr><td>repo</td><td>yes</td><td>
113113

114-
The name of the repository. The name is not case sensitive.
114+
The name of the repository without the `.git` extension. The name is not case sensitive.
115115

116116
</td></tr>
117117
<tr><td>secret_name</td><td>yes</td><td>

docs/actions/createRegistrationTokenForRepo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The account owner of the repository. The name is not case sensitive.
4444
</td></tr>
4545
<tr><td>repo</td><td>yes</td><td>
4646

47-
The name of the repository. The name is not case sensitive.
47+
The name of the repository without the `.git` extension. The name is not case sensitive.
4848

4949
</td></tr>
5050
</tbody>

docs/actions/createRemoveTokenForRepo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The account owner of the repository. The name is not case sensitive.
4444
</td></tr>
4545
<tr><td>repo</td><td>yes</td><td>
4646

47-
The name of the repository. The name is not case sensitive.
47+
The name of the repository without the `.git` extension. The name is not case sensitive.
4848

4949
</td></tr>
5050
</tbody>

docs/actions/createRepoVariable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The account owner of the repository. The name is not case sensitive.
3939
</td></tr>
4040
<tr><td>repo</td><td>yes</td><td>
4141

42-
The name of the repository. The name is not case sensitive.
42+
The name of the repository without the `.git` extension. The name is not case sensitive.
4343

4444
</td></tr>
4545
<tr><td>name</td><td>yes</td><td>

docs/actions/createWorkflowDispatch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The account owner of the repository. The name is not case sensitive.
4141
</td></tr>
4242
<tr><td>repo</td><td>yes</td><td>
4343

44-
The name of the repository. The name is not case sensitive.
44+
The name of the repository without the `.git` extension. The name is not case sensitive.
4545

4646
</td></tr>
4747
<tr><td>workflow_id</td><td>yes</td><td>

docs/actions/deleteActionsCacheById.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The account owner of the repository. The name is not case sensitive.
4040
</td></tr>
4141
<tr><td>repo</td><td>yes</td><td>
4242

43-
The name of the repository. The name is not case sensitive.
43+
The name of the repository without the `.git` extension. The name is not case sensitive.
4444

4545
</td></tr>
4646
<tr><td>cache_id</td><td>yes</td><td>

0 commit comments

Comments
 (0)