Skip to content

Commit fa3207e

Browse files
authored
Merge pull request #37064 from github/repo-sync
Repo sync
2 parents 8bab43d + d0fd4a7 commit fa3207e

File tree

5 files changed

+54
-52
lines changed

5 files changed

+54
-52
lines changed

content/code-security/securing-your-organization/introduction-to-securing-your-organization-at-scale/choosing-a-security-configuration-for-your-repositories.md

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ topics:
2121

2222
_We recommend that organizations initially apply the {% data variables.product.prodname_github_security_configuration %}_. After you have applied the {% data variables.product.prodname_github_security_configuration %} to repositories in your organization, you can evaluate the security findings for each repository and determine if you instead want to create and apply a {% data variables.product.prodname_custom_security_configuration %}.
2323

24+
Currently, only one {% data variables.product.prodname_security_configuration %} can be applied to a repository at a time.
25+
2426
## Choosing the {% data variables.product.prodname_github_security_configuration %}
2527

2628
The {% data variables.product.prodname_github_security_configuration %} offers a number of benefits:

content/github-models/prototyping-with-ai-models.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The steps to use each model are similar. In general, you will need to:
6565
1. Either open a codespace, or set up your local environment:
6666
* To run in a codespace, click **{% octicon "codespaces" aria-hidden="true" %} Run codespace**, then click **Create new codespace**.
6767
* To run locally:
68-
* Create a {% data variables.product.company_short %} {% data variables.product.pat_generic %}. The token should not have any scopes or permissions. See [AUTOTITLE](/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens).
68+
* Create a {% data variables.product.company_short %} {% data variables.product.pat_generic %}. The token needs to have `models:read` permissions. See [AUTOTITLE](/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens).
6969
* Save your token as an environment variable.
7070
* Install the dependencies for the SDK, if required.
7171
1. Use the example code to make a request to the model.

package-lock.json

+40-50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@
301301
"mdast-util-to-markdown": "2.1.0",
302302
"mdast-util-to-string": "^4.0.0",
303303
"morgan": "^1.10.0",
304-
"next": "^15.1.5",
304+
"next": "^15.2.3",
305305
"ora": "^8.0.1",
306306
"parse5": "7.1.2",
307307
"quick-lru": "7.0.0",

src/rest/components/get-rest-code-samples.ts

+10
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,16 @@ export function getShellExample(
3939
contentTypeHeader = '-H "Content-Type: multipart/form-data"'
4040
}
4141

42+
// GHES Manage API requests differ from the dotcom API requests and make use of multipart/form-data and json content types
43+
if (operation.subcategory === 'manage-ghes') {
44+
// GET requests don't have a requestBody set, therefore let's default them to application/json
45+
if (operation.verb === 'get') {
46+
contentTypeHeader = '-H "Content-Type: application/json"'
47+
} else {
48+
contentTypeHeader = `-H "Content-Type: ${codeSample?.request?.contentType}"`
49+
}
50+
}
51+
4252
let requestPath = codeSample?.request?.parameters
4353
? parseTemplate(operation.requestPath).expand(codeSample.request.parameters)
4454
: operation.requestPath

0 commit comments

Comments
 (0)