@@ -13,7 +13,7 @@ Creates or updates a repository secret with an encrypted value. Encrypt your sec
1313token with the ` repo ` scope to use this endpoint. GitHub Apps must have the ` secrets ` repository permission to use
1414this endpoint.
1515
16- #### Example encrypting a secret using Node.js
16+ ** Example encrypting a secret using Node.js**
1717
1818Encrypt 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
4343Encrypt 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
5959Encrypt 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
6767Console.WriteLine(Convert.ToBase64String(sealedPublicKeyBox));
6868```
6969
70- #### Example encrypting a secret using Ruby
70+ ** Example encrypting a secret using Ruby**
7171
7272Encrypt 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 >
0 commit comments