diff --git a/content/code-security/dependabot/working-with-dependabot/dependabot-options-reference.md b/content/code-security/dependabot/working-with-dependabot/dependabot-options-reference.md index e17815e3dabf..f32e56b6ac90 100644 --- a/content/code-security/dependabot/working-with-dependabot/dependabot-options-reference.md +++ b/content/code-security/dependabot/working-with-dependabot/dependabot-options-reference.md @@ -276,7 +276,7 @@ Use to ignore specific versions or ranges of versions. If you want to define a r * npm: use `^1.0.0` * Bundler: use `~> 2.0` -* Docker: use Ruby version syntax +* Docker: use Bundler version syntax * NuGet: use `7.*` * Maven: use `[1.4,)` diff --git a/content/site-policy/privacy-policies/github-subprocessors.md b/content/site-policy/privacy-policies/github-subprocessors.md index f4277285a86f..b3240d6a7df1 100644 --- a/content/site-policy/privacy-policies/github-subprocessors.md +++ b/content/site-policy/privacy-policies/github-subprocessors.md @@ -27,7 +27,7 @@ If you have questions about this list, please contact us at | --------------------------- | ------------------------------------------------------------------------------ | ----------------------- | ------------------ | | Amazon Web Services (AWS) | Cloud Hosted Infrastructure and Data Hosting | United States | United States | | Anthropic PBC | AI Inference and AI Services | United States | United States | -| Azure (Microsoft) | Cloud Hosted Infrastructure and Data Hosting | United States, Australia,
Brazil, Canada, France,
Japan, Norway, Spain,
Sweden, Switzerland,
United Kingdom | United States | +| Azure (Microsoft) | Cloud Hosted Infrastructure, Data Hosting, and AI Inference | United States, Australia,
Brazil, Canada, France,
Japan, Norway, Spain,
Sweden, Switzerland,
United Kingdom | United States | | Azure Cognitive Services | Customer support ticketing analysis | United States | United States | | Cloudflare | Content delivery service | United States | United States | | Fastly | Content delivery service | United States | United States | diff --git a/src/frame/components/DefaultLayout.tsx b/src/frame/components/DefaultLayout.tsx index f5d4f7c1fe7a..ec22f51f7f35 100644 --- a/src/frame/components/DefaultLayout.tsx +++ b/src/frame/components/DefaultLayout.tsx @@ -61,7 +61,7 @@ export const DefaultLayout = (props: Props) => { const metaDescription = page.introPlainText ? page.introPlainText : t('default_description') const SOCIAL_CATEGORIES = new Set(['code-security', 'actions', 'issues', 'copilot']) - const SOCIAL_CARD_IMG_BASE_URL = `${xHost}/assets/cb-345/images/social-cards` + const SOCIAL_CARD_IMG_BASE_URL = `${xHost ? 'https://' + xHost : ''}/assets/cb-345/images/social-cards` function getCategoryImageUrl(category: string): string { return `${SOCIAL_CARD_IMG_BASE_URL}/${category}.png` diff --git a/src/github-apps/lib/config.json b/src/github-apps/lib/config.json index 7a79ca227d95..1d00060c528a 100644 --- a/src/github-apps/lib/config.json +++ b/src/github-apps/lib/config.json @@ -60,5 +60,5 @@ "2022-11-28" ] }, - "sha": "a3b90207333d17877bcbab612a4163337ed7148c" + "sha": "8af3e59120fdf6294e2d385bdae74b39fa824da5" } \ No newline at end of file diff --git a/src/rest/data/fpt-2022-11-28/schema.json b/src/rest/data/fpt-2022-11-28/schema.json index 52b516e486ea..b5ef6363e95b 100644 --- a/src/rest/data/fpt-2022-11-28/schema.json +++ b/src/rest/data/fpt-2022-11-28/schema.json @@ -144111,7 +144111,7 @@ } ], "previews": [], - "descriptionHTML": "

Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, the status of the check suite it belongs to is reset to queued and the conclusion is cleared. The check run itself is not updated. GitHub apps recieving the check_run webhook with the rerequested action should then decide if the check run should be reset or updated and call the update check_run endpoint to update the check_run if desired.

\n

For more information about how to re-run GitHub Actions jobs, see \"Re-run a job from a workflow run\".

\n

OAuth apps and personal access tokens (classic) cannot use this endpoint.

", + "descriptionHTML": "

Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, the status of the check suite it belongs to is reset to queued and the conclusion is cleared. The check run itself is not updated. GitHub apps recieving the check_run webhook with the rerequested action should then decide if the check run should be reset or updated and call the update check_run endpoint to update the check_run if desired.

\n

For more information about how to re-run GitHub Actions jobs, see \"Re-run a job from a workflow run\".

", "statusCodes": [ { "httpStatusCode": "201", @@ -154379,7 +154379,7 @@ } ], "previews": [], - "descriptionHTML": "

Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.

\n

OAuth apps and personal access tokens (classic) cannot use this endpoint.

", + "descriptionHTML": "

Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.

", "statusCodes": [ { "httpStatusCode": "201", @@ -243433,6 +243433,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -245345,6 +245366,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -247282,6 +247324,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", diff --git a/src/rest/data/ghec-2022-11-28/schema.json b/src/rest/data/ghec-2022-11-28/schema.json index 1f083d578c2a..56cecd50d9b0 100644 --- a/src/rest/data/ghec-2022-11-28/schema.json +++ b/src/rest/data/ghec-2022-11-28/schema.json @@ -118107,7 +118107,7 @@ { "name": "advanced_security_product", "in": "query", - "description": "

The security feature to get GitHub Advanced Security active committers for.

", + "description": "

The security product to get GitHub Advanced Security active committers for. This parameter is required if you have puchased standalone Code Scanning or Secret Protection products to specify which one you want to get the committer information for, otherwise it is not required.

", "required": false, "schema": { "type": "string", @@ -153527,7 +153527,7 @@ } ], "previews": [], - "descriptionHTML": "

Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, the status of the check suite it belongs to is reset to queued and the conclusion is cleared. The check run itself is not updated. GitHub apps recieving the check_run webhook with the rerequested action should then decide if the check run should be reset or updated and call the update check_run endpoint to update the check_run if desired.

\n

For more information about how to re-run GitHub Actions jobs, see \"Re-run a job from a workflow run\".

\n

OAuth apps and personal access tokens (classic) cannot use this endpoint.

", + "descriptionHTML": "

Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, the status of the check suite it belongs to is reset to queued and the conclusion is cleared. The check run itself is not updated. GitHub apps recieving the check_run webhook with the rerequested action should then decide if the check run should be reset or updated and call the update check_run endpoint to update the check_run if desired.

\n

For more information about how to re-run GitHub Actions jobs, see \"Re-run a job from a workflow run\".

", "statusCodes": [ { "httpStatusCode": "201", @@ -163843,7 +163843,7 @@ } ], "previews": [], - "descriptionHTML": "

Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.

\n

OAuth apps and personal access tokens (classic) cannot use this endpoint.

", + "descriptionHTML": "

Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.

", "statusCodes": [ { "httpStatusCode": "201", @@ -256753,6 +256753,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -258665,6 +258686,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -260602,6 +260644,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -281318,7 +281381,7 @@ { "name": "advanced_security_product", "in": "query", - "description": "

The security feature to get GitHub Advanced Security active committers for.

", + "description": "

The security product to get GitHub Advanced Security active committers for. This parameter is required if you have puchased standalone Code Scanning or Secret Protection products to specify which one you want to get the committer information for, otherwise it is not required.

", "required": false, "schema": { "type": "string", diff --git a/src/rest/data/ghes-3.12-2022-11-28/schema.json b/src/rest/data/ghes-3.12-2022-11-28/schema.json index 985a206b2118..52d1362b6697 100644 --- a/src/rest/data/ghes-3.12-2022-11-28/schema.json +++ b/src/rest/data/ghes-3.12-2022-11-28/schema.json @@ -108728,19 +108728,6 @@ "type": "string" } }, - { - "name": "advanced_security_product", - "in": "query", - "description": "

The security feature to get GitHub Advanced Security active committers for.

", - "required": false, - "schema": { - "type": "string", - "enum": [ - "code_security", - "secret_protection" - ] - } - }, { "name": "per_page", "description": "

The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"

", @@ -140606,7 +140593,7 @@ } ], "previews": [], - "descriptionHTML": "

Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, the status of the check suite it belongs to is reset to queued and the conclusion is cleared. The check run itself is not updated. GitHub apps recieving the check_run webhook with the rerequested action should then decide if the check run should be reset or updated and call the update check_run endpoint to update the check_run if desired.

\n

For more information about how to re-run GitHub Actions jobs, see \"Re-run a job from a workflow run\".

\n

OAuth apps and personal access tokens (classic) cannot use this endpoint.

", + "descriptionHTML": "

Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, the status of the check suite it belongs to is reset to queued and the conclusion is cleared. The check run itself is not updated. GitHub apps recieving the check_run webhook with the rerequested action should then decide if the check run should be reset or updated and call the update check_run endpoint to update the check_run if desired.

\n

For more information about how to re-run GitHub Actions jobs, see \"Re-run a job from a workflow run\".

", "statusCodes": [ { "httpStatusCode": "201", @@ -150688,7 +150675,7 @@ } ], "previews": [], - "descriptionHTML": "

Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.

\n

OAuth apps and personal access tokens (classic) cannot use this endpoint.

", + "descriptionHTML": "

Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.

", "statusCodes": [ { "httpStatusCode": "201", @@ -179235,6 +179222,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -181098,6 +181106,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -182978,6 +183007,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "manifest", "in": "query", @@ -202902,19 +202952,6 @@ "type": "string" } }, - { - "name": "advanced_security_product", - "in": "query", - "description": "

The security feature to get GitHub Advanced Security active committers for.

", - "required": false, - "schema": { - "type": "string", - "enum": [ - "code_security", - "secret_protection" - ] - } - }, { "name": "per_page", "description": "

The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"

", diff --git a/src/rest/data/ghes-3.13-2022-11-28/schema.json b/src/rest/data/ghes-3.13-2022-11-28/schema.json index cf83250d87d3..5dca57af5a2b 100644 --- a/src/rest/data/ghes-3.13-2022-11-28/schema.json +++ b/src/rest/data/ghes-3.13-2022-11-28/schema.json @@ -108876,19 +108876,6 @@ "type": "string" } }, - { - "name": "advanced_security_product", - "in": "query", - "description": "

The security feature to get GitHub Advanced Security active committers for.

", - "required": false, - "schema": { - "type": "string", - "enum": [ - "code_security", - "secret_protection" - ] - } - }, { "name": "per_page", "description": "

The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"

", @@ -140750,7 +140737,7 @@ } ], "previews": [], - "descriptionHTML": "

Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, the status of the check suite it belongs to is reset to queued and the conclusion is cleared. The check run itself is not updated. GitHub apps recieving the check_run webhook with the rerequested action should then decide if the check run should be reset or updated and call the update check_run endpoint to update the check_run if desired.

\n

For more information about how to re-run GitHub Actions jobs, see \"Re-run a job from a workflow run\".

\n

OAuth apps and personal access tokens (classic) cannot use this endpoint.

", + "descriptionHTML": "

Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, the status of the check suite it belongs to is reset to queued and the conclusion is cleared. The check run itself is not updated. GitHub apps recieving the check_run webhook with the rerequested action should then decide if the check run should be reset or updated and call the update check_run endpoint to update the check_run if desired.

\n

For more information about how to re-run GitHub Actions jobs, see \"Re-run a job from a workflow run\".

", "statusCodes": [ { "httpStatusCode": "201", @@ -150832,7 +150819,7 @@ } ], "previews": [], - "descriptionHTML": "

Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.

\n

OAuth apps and personal access tokens (classic) cannot use this endpoint.

", + "descriptionHTML": "

Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.

", "statusCodes": [ { "httpStatusCode": "201", @@ -179379,6 +179366,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -181242,6 +181250,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -183122,6 +183151,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "manifest", "in": "query", @@ -203046,19 +203096,6 @@ "type": "string" } }, - { - "name": "advanced_security_product", - "in": "query", - "description": "

The security feature to get GitHub Advanced Security active committers for.

", - "required": false, - "schema": { - "type": "string", - "enum": [ - "code_security", - "secret_protection" - ] - } - }, { "name": "per_page", "description": "

The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"

", diff --git a/src/rest/data/ghes-3.14-2022-11-28/schema.json b/src/rest/data/ghes-3.14-2022-11-28/schema.json index ae92a137daff..3a6df351420e 100644 --- a/src/rest/data/ghes-3.14-2022-11-28/schema.json +++ b/src/rest/data/ghes-3.14-2022-11-28/schema.json @@ -108876,19 +108876,6 @@ "type": "string" } }, - { - "name": "advanced_security_product", - "in": "query", - "description": "

The security feature to get GitHub Advanced Security active committers for.

", - "required": false, - "schema": { - "type": "string", - "enum": [ - "code_security", - "secret_protection" - ] - } - }, { "name": "per_page", "description": "

The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"

", @@ -140750,7 +140737,7 @@ } ], "previews": [], - "descriptionHTML": "

Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, the status of the check suite it belongs to is reset to queued and the conclusion is cleared. The check run itself is not updated. GitHub apps recieving the check_run webhook with the rerequested action should then decide if the check run should be reset or updated and call the update check_run endpoint to update the check_run if desired.

\n

For more information about how to re-run GitHub Actions jobs, see \"Re-run a job from a workflow run\".

\n

OAuth apps and personal access tokens (classic) cannot use this endpoint.

", + "descriptionHTML": "

Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, the status of the check suite it belongs to is reset to queued and the conclusion is cleared. The check run itself is not updated. GitHub apps recieving the check_run webhook with the rerequested action should then decide if the check run should be reset or updated and call the update check_run endpoint to update the check_run if desired.

\n

For more information about how to re-run GitHub Actions jobs, see \"Re-run a job from a workflow run\".

", "statusCodes": [ { "httpStatusCode": "201", @@ -150832,7 +150819,7 @@ } ], "previews": [], - "descriptionHTML": "

Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.

\n

OAuth apps and personal access tokens (classic) cannot use this endpoint.

", + "descriptionHTML": "

Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.

", "statusCodes": [ { "httpStatusCode": "201", @@ -179379,6 +179366,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -181242,6 +181250,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -183122,6 +183151,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "manifest", "in": "query", @@ -203046,19 +203096,6 @@ "type": "string" } }, - { - "name": "advanced_security_product", - "in": "query", - "description": "

The security feature to get GitHub Advanced Security active committers for.

", - "required": false, - "schema": { - "type": "string", - "enum": [ - "code_security", - "secret_protection" - ] - } - }, { "name": "per_page", "description": "

The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"

", diff --git a/src/rest/data/ghes-3.15-2022-11-28/schema.json b/src/rest/data/ghes-3.15-2022-11-28/schema.json index c5b7b75f471e..edd1e0e0de65 100644 --- a/src/rest/data/ghes-3.15-2022-11-28/schema.json +++ b/src/rest/data/ghes-3.15-2022-11-28/schema.json @@ -109304,19 +109304,6 @@ "type": "string" } }, - { - "name": "advanced_security_product", - "in": "query", - "description": "

The security feature to get GitHub Advanced Security active committers for.

", - "required": false, - "schema": { - "type": "string", - "enum": [ - "code_security", - "secret_protection" - ] - } - }, { "name": "per_page", "description": "

The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"

", @@ -141334,7 +141321,7 @@ } ], "previews": [], - "descriptionHTML": "

Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, the status of the check suite it belongs to is reset to queued and the conclusion is cleared. The check run itself is not updated. GitHub apps recieving the check_run webhook with the rerequested action should then decide if the check run should be reset or updated and call the update check_run endpoint to update the check_run if desired.

\n

For more information about how to re-run GitHub Actions jobs, see \"Re-run a job from a workflow run\".

\n

OAuth apps and personal access tokens (classic) cannot use this endpoint.

", + "descriptionHTML": "

Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, the status of the check suite it belongs to is reset to queued and the conclusion is cleared. The check run itself is not updated. GitHub apps recieving the check_run webhook with the rerequested action should then decide if the check run should be reset or updated and call the update check_run endpoint to update the check_run if desired.

\n

For more information about how to re-run GitHub Actions jobs, see \"Re-run a job from a workflow run\".

", "statusCodes": [ { "httpStatusCode": "201", @@ -151506,7 +151493,7 @@ } ], "previews": [], - "descriptionHTML": "

Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.

\n

OAuth apps and personal access tokens (classic) cannot use this endpoint.

", + "descriptionHTML": "

Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.

", "statusCodes": [ { "httpStatusCode": "201", @@ -183554,6 +183541,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -185417,6 +185425,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -187297,6 +187326,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "manifest", "in": "query", @@ -207269,19 +207319,6 @@ "type": "string" } }, - { - "name": "advanced_security_product", - "in": "query", - "description": "

The security feature to get GitHub Advanced Security active committers for.

", - "required": false, - "schema": { - "type": "string", - "enum": [ - "code_security", - "secret_protection" - ] - } - }, { "name": "per_page", "description": "

The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"

", diff --git a/src/rest/data/ghes-3.16-2022-11-28/schema.json b/src/rest/data/ghes-3.16-2022-11-28/schema.json index 7a0c255aa399..a15af2bd8a83 100644 --- a/src/rest/data/ghes-3.16-2022-11-28/schema.json +++ b/src/rest/data/ghes-3.16-2022-11-28/schema.json @@ -109402,19 +109402,6 @@ "type": "string" } }, - { - "name": "advanced_security_product", - "in": "query", - "description": "

The security feature to get GitHub Advanced Security active committers for.

", - "required": false, - "schema": { - "type": "string", - "enum": [ - "code_security", - "secret_protection" - ] - } - }, { "name": "per_page", "description": "

The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"

", @@ -141432,7 +141419,7 @@ } ], "previews": [], - "descriptionHTML": "

Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, the status of the check suite it belongs to is reset to queued and the conclusion is cleared. The check run itself is not updated. GitHub apps recieving the check_run webhook with the rerequested action should then decide if the check run should be reset or updated and call the update check_run endpoint to update the check_run if desired.

\n

For more information about how to re-run GitHub Actions jobs, see \"Re-run a job from a workflow run\".

\n

OAuth apps and personal access tokens (classic) cannot use this endpoint.

", + "descriptionHTML": "

Triggers GitHub to rerequest an existing check run, without pushing new code to a repository. This endpoint will trigger the check_run webhook event with the action rerequested. When a check run is rerequested, the status of the check suite it belongs to is reset to queued and the conclusion is cleared. The check run itself is not updated. GitHub apps recieving the check_run webhook with the rerequested action should then decide if the check run should be reset or updated and call the update check_run endpoint to update the check_run if desired.

\n

For more information about how to re-run GitHub Actions jobs, see \"Re-run a job from a workflow run\".

", "statusCodes": [ { "httpStatusCode": "201", @@ -151604,7 +151591,7 @@ } ], "previews": [], - "descriptionHTML": "

Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.

\n

OAuth apps and personal access tokens (classic) cannot use this endpoint.

", + "descriptionHTML": "

Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository. This endpoint will trigger the check_suite webhook event with the action rerequested. When a check suite is rerequested, its status is reset to queued and the conclusion is cleared.

", "statusCodes": [ { "httpStatusCode": "201", @@ -187212,6 +187199,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -189110,6 +189118,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -191033,6 +191062,27 @@ "type": "string" } }, + { + "name": "has", + "in": "query", + "description": "

Filters the list of alerts based on whether the alert has a patch. If specified, only alerts with a patch will be returned.\nMultiple has filters can be chained to check if multiple properties are present.

", + "schema": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "array", + "items": { + "type": "string", + "enum": [ + "patch" + ] + } + } + ] + } + }, { "name": "scope", "in": "query", @@ -212440,19 +212490,6 @@ "type": "string" } }, - { - "name": "advanced_security_product", - "in": "query", - "description": "

The security feature to get GitHub Advanced Security active committers for.

", - "required": false, - "schema": { - "type": "string", - "enum": [ - "code_security", - "secret_protection" - ] - } - }, { "name": "per_page", "description": "

The number of results per page (max 100). For more information, see \"Using pagination in the REST API.\"

", diff --git a/src/rest/lib/config.json b/src/rest/lib/config.json index 47cea04876fa..0c0ac931a76f 100644 --- a/src/rest/lib/config.json +++ b/src/rest/lib/config.json @@ -47,5 +47,5 @@ ] } }, - "sha": "a3b90207333d17877bcbab612a4163337ed7148c" + "sha": "8af3e59120fdf6294e2d385bdae74b39fa824da5" } \ No newline at end of file diff --git a/src/webhooks/lib/config.json b/src/webhooks/lib/config.json index 8925ba5485df..474f52a0079f 100644 --- a/src/webhooks/lib/config.json +++ b/src/webhooks/lib/config.json @@ -1,3 +1,3 @@ { - "sha": "a3b90207333d17877bcbab612a4163337ed7148c" + "sha": "8af3e59120fdf6294e2d385bdae74b39fa824da5" } \ No newline at end of file