diff --git a/.github/workflows/hubber-contribution-help.yml b/.github/workflows/hubber-contribution-help.yml index cc71b17a98..9877c5ec99 100644 --- a/.github/workflows/hubber-contribution-help.yml +++ b/.github/workflows/hubber-contribution-help.yml @@ -41,7 +41,7 @@ jobs: run: | gh pr comment $PR --body "Thanks so much for opening this PR and contributing to GitHub Docs! - - When you're ready for the Docs team to review this PR, add the *ready-for-doc-review* label to your PR to the [Docs Content review board](https://github.com/orgs/github/memexes/901?layout=table&groupedBy%5BcolumnId%5D=11024). **Please factor in at least 72 hours for a review, even longer if this is a substantial change.** + - When you're ready for the Docs team to review this PR, add the *ready-for-doc-review* label to your PR, and it will be automatically added to the [Docs Content review board](https://github.com/orgs/github/memexes/901?layout=table&groupedBy%5BcolumnId%5D=11024). **Please factor in at least 72 hours for a review, even longer if this is a substantial change.** - If this is a major update to the docs, you might want to go back and open an [issue](https://github.com/github/docs-content/issues/new/choose) to ensure we've covered all areas of the docs in these updates. Not doing so may result in delays or inaccurate documentation." env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/components/article/ClientsideRedirectExceptions.tsx b/components/article/ClientsideRedirectExceptions.tsx index 77057f22d5..9e4248d01a 100644 --- a/components/article/ClientsideRedirectExceptions.tsx +++ b/components/article/ClientsideRedirectExceptions.tsx @@ -1,35 +1,67 @@ import { useEffect } from 'react' import { useRouter } from 'next/router' -import restApiOverrides from '../../lib/redirects/static/client-side-rest-api-redirects.json' -import productOverrides from '../../lib/redirects/static/client-side-product-redirects.json' -const overrideRedirects: Record = { ...restApiOverrides, ...productOverrides } - +// We recently moved several rest api operations around +// in the docs. That means that we are out of sync with +// the urls defined in the OpenAPI. We will eventually +// update those urls but for now we want to ensure that +// we have client-side redirects in place for any urls +// in the product that link to the rest docs (e.g., error +// code urls from the apis). +// The client-side redirects can consist of operation urls +// being redirected to the new operation url or headings +// on a page that need to be redirected to the new page (e.g., +// /rest/reference/repos#statuses to +// /rest/reference/commits#commit-statuses) export default function ClientSideRedirectExceptions() { const router = useRouter() useEffect(() => { - // We have some one-off redirects for rest api docs - // currently those are limited to the repos page, but - // that will grow soon as we restructure the rest api docs. - // This is a workaround to updating the hardcoded links - // directly in the REST API code in a separate repo, which - // requires many file changes and teams to sign off. - // While the organization is turbulent, we can do this. - // Once it's more settled, we can refactor the rest api code - // to leverage the OpenAPI urls rather than hardcoded urls. - const { hash, pathname } = window.location + // Because we have an async call to fetch, it's possible that this + // component unmounts before we perform the redirect, however, React + // will still try to perform the redirect even after the component + // is unmounted. To prevent this, we can use the AbortController signal + // to abort the Web request when the component unmounts. + const controller = new AbortController() + const signal = controller.signal - // The `hash` will start with a `#` but all the keys in - // `overrideRedirects` do not. Hence, this slice. - const combined = pathname + hash - const overrideKey = combined + const { hash, pathname } = window.location + // path without a version or language + const barePath = pathname .replace(`/${router.locale}`, '') .replace(`/${router.query.versionId || ''}`, '') - const redirectToName = overrideRedirects[overrideKey] - if (redirectToName) { - const newPathname = combined.replace(overrideKey, redirectToName) - router.replace(newPathname) + + async function getRedirect() { + try { + const sp = new URLSearchParams() + sp.set('path', barePath) + sp.set('hash', hash.replace(/^#/, '')) + + // call the anchor-redirect endpoint to get the redirect url + const response = await fetch(`/anchor-redirect?${sp.toString()}`, { + signal, + }) + + // the response status will always be 200 unless there + // was a problem with the fetch request. When the + // redirect doesn't exist the json response will be empty + if (response.ok) { + const { to } = await response.json() + if (to) { + // we want to redirect with the language and version in tact + // so we'll replace the full url's path and hash + const fromUrl = pathname + hash + const bareUrl = barePath + hash + const toUrl = fromUrl.replace(bareUrl, to) + router.replace(toUrl) + } + } + } catch (error) { + console.warn('Unable to fetch client-side redirect:', error) + } } + getRedirect() + + return () => controller.abort() }, []) return null diff --git a/data/reusables/organizations/security-manager-beta-note.md b/data/reusables/organizations/security-manager-beta-note.md index 5e1c005d46..437ffe1f52 100644 --- a/data/reusables/organizations/security-manager-beta-note.md +++ b/data/reusables/organizations/security-manager-beta-note.md @@ -1,5 +1,5 @@ {% note %} -**Note:** The security manager role is in public beta and subject to change. This feature is not available for organizations using legacy per-repository billing plans. +**Note:** The security manager role is in public beta and subject to change.{% ifversion fpt %} This feature is not available for organizations using legacy per-repository billing plans.{% endif %} {% endnote %} diff --git a/lib/redirects/static/client-side-product-redirects.json b/lib/redirects/static/client-side-product-redirects.json deleted file mode 100644 index 007588a106..0000000000 --- a/lib/redirects/static/client-side-product-redirects.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "/rest/reference/repos#statuses": "/rest/reference/commits#commit-statuses" -} \ No newline at end of file diff --git a/lib/redirects/static/client-side-rest-api-redirects.json b/lib/redirects/static/client-side-rest-api-redirects.json index 9578ae7952..0c0b3af998 100644 --- a/lib/redirects/static/client-side-rest-api-redirects.json +++ b/lib/redirects/static/client-side-rest-api-redirects.json @@ -155,6 +155,7 @@ "/rest/orgs#list-custom-repository-roles-in-an-organization": "/rest/orgs/custom-roles#list-custom-repository-roles-in-an-organization", "/rest/repos#deploy-keys": "/rest/deploy-keys", "/rest/deployments#deploy-keys": "/rest/deploy-keys", + "/rest/repos#statuses": "/rest/commits/statuses", "/rest/apps#get-the-authenticated-app": "/rest/apps/apps#get-the-authenticated-app", "/rest/apps#create-a-github-app-from-a-manifest": "/rest/apps/apps#create-a-github-app-from-a-manifest", "/rest/apps#get-a-webhook-configuration-for-an-app": "/rest/apps/webhooks#get-a-webhook-configuration-for-an-app", diff --git a/lib/rest/static/decorated/api.github.com.json b/lib/rest/static/decorated/api.github.com.json index e23ef58797..b1cc559bc8 100644 --- a/lib/rest/static/decorated/api.github.com.json +++ b/lib/rest/static/decorated/api.github.com.json @@ -52,7 +52,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -146,7 +146,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -224,7 +224,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -298,7 +298,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -382,7 +382,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -461,7 +461,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -511,7 +511,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -579,7 +579,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -649,7 +649,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -703,7 +703,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -784,7 +784,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled_organizations": "all", @@ -851,7 +851,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -931,7 +931,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_organization_ids": [ @@ -991,7 +991,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -1046,7 +1046,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -1092,7 +1092,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -1178,7 +1178,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -1231,7 +1231,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1312,7 +1312,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled_repositories": "all", @@ -1379,7 +1379,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1568,7 +1568,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -1628,7 +1628,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -1683,7 +1683,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -1729,7 +1729,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1815,7 +1815,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -1868,7 +1868,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1942,7 +1942,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "default_workflow_permissions": "read", @@ -2000,7 +2000,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2086,7 +2086,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled": true, @@ -2145,7 +2145,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2220,7 +2220,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_level": "organization" @@ -2278,7 +2278,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2374,7 +2374,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -2448,7 +2448,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -2518,7 +2518,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -2577,7 +2577,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2687,7 +2687,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2712,7 +2712,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2780,7 +2780,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2853,7 +2853,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2997,7 +2997,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -3066,7 +3066,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -3135,7 +3135,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -3213,7 +3213,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -3284,7 +3284,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -3353,7 +3353,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -3445,7 +3445,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3466,7 +3466,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3539,7 +3539,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -3613,7 +3613,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3684,7 +3684,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3753,7 +3753,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3845,7 +3845,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3866,7 +3866,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3939,7 +3939,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -4015,7 +4015,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -4190,7 +4190,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -4271,7 +4271,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4402,7 +4402,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -4476,7 +4476,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4549,7 +4549,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4639,7 +4639,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_organization_ids": [ @@ -4709,7 +4709,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4774,7 +4774,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4848,7 +4848,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4977,7 +4977,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "runners": [ @@ -5047,7 +5047,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -5112,7 +5112,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -5186,7 +5186,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -5366,7 +5366,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -5448,7 +5448,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5580,7 +5580,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -5655,7 +5655,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5728,7 +5728,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -6045,7 +6045,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -6115,7 +6115,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -6180,7 +6180,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -6254,7 +6254,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -6383,7 +6383,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "runners": [ @@ -6453,7 +6453,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -6518,7 +6518,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -6585,7 +6585,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -6689,7 +6689,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -6767,7 +6767,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -6817,7 +6817,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -6876,7 +6876,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -6961,7 +6961,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -7016,7 +7016,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -7117,7 +7117,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -7228,7 +7228,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -7323,7 +7323,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -7416,7 +7416,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -7515,7 +7515,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -7619,7 +7619,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -7697,7 +7697,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -7747,7 +7747,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -7806,7 +7806,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -7891,7 +7891,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -7946,7 +7946,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -8047,7 +8047,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -8158,7 +8158,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -8253,7 +8253,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -8342,7 +8342,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -8450,7 +8450,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8564,7 +8564,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8652,7 +8652,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8712,7 +8712,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8781,7 +8781,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8876,7 +8876,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8941,7 +8941,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9052,7 +9052,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -9173,7 +9173,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -9278,7 +9278,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9377,7 +9377,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9479,7 +9479,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9651,7 +9651,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9743,7 +9743,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9957,7 +9957,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10136,7 +10136,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10293,7 +10293,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10591,7 +10591,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10875,7 +10875,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10940,7 +10940,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11043,7 +11043,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11135,7 +11135,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11429,7 +11429,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11495,7 +11495,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11564,7 +11564,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11629,7 +11629,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11702,7 +11702,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11873,7 +11873,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11979,7 +11979,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12044,7 +12044,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12109,7 +12109,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12330,7 +12330,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12630,7 +12630,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12731,7 +12731,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12816,7 +12816,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12912,7 +12912,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "topic-branch", @@ -12991,7 +12991,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -13063,7 +13063,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -13137,7 +13137,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -13218,7 +13218,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -13298,7 +13298,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -13370,7 +13370,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -13434,7 +13434,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -13506,7 +13506,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME", @@ -13570,7 +13570,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -13633,7 +13633,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -13696,7 +13696,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -13733,7 +13733,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -13875,7 +13875,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -14031,7 +14031,7 @@ "key": "202", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -14043,7 +14043,7 @@ "key": "205", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -14101,7 +14101,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -14243,7 +14243,7 @@ { "key": "205", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -14296,7 +14296,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -14374,7 +14374,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -14440,7 +14440,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -14564,7 +14564,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -14718,7 +14718,7 @@ "key": "202", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -14734,7 +14734,7 @@ "key": "205", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -14813,7 +14813,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -14851,7 +14851,7 @@ { "key": "alternative-response-with-star-creation-timestamps", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -14964,7 +14964,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -15101,7 +15101,7 @@ { "key": "alternative-response-with-star-creation-timestamps", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -15293,7 +15293,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -15364,7 +15364,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -15435,7 +15435,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -15543,7 +15543,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -15743,7 +15743,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -15821,7 +15821,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -15913,7 +15913,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -15977,7 +15977,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -16032,7 +16032,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -16211,7 +16211,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -16356,7 +16356,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -16440,7 +16440,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "code": "CODE" @@ -16567,7 +16567,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -16667,7 +16667,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -16772,7 +16772,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -17664,7 +17664,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "respoitory": "Hello-World", @@ -17872,7 +17872,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -17926,7 +17926,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -17975,7 +17975,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "app_slug": "APP_SLUG" @@ -18070,7 +18070,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -18175,7 +18175,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18280,7 +18280,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -18388,7 +18388,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -18556,7 +18556,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -18607,7 +18607,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -18790,7 +18790,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -18990,7 +18990,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1, @@ -19062,7 +19062,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1, @@ -19122,7 +19122,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "account_id": "ACCOUNT_ID" @@ -19242,7 +19242,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -19358,7 +19358,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "plan_id": "PLAN_ID" @@ -19474,7 +19474,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "account_id": "ACCOUNT_ID" @@ -19594,7 +19594,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -19706,7 +19706,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "plan_id": "PLAN_ID" @@ -19823,7 +19823,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -19924,7 +19924,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -20030,7 +20030,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -20098,7 +20098,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -20213,7 +20213,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -20324,7 +20324,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -21255,7 +21255,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a", @@ -21389,7 +21389,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -21486,7 +21486,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content_type": "json", @@ -21550,7 +21550,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -21629,7 +21629,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "delivery_id": "DELIVERY_ID" @@ -21726,7 +21726,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "delivery_id": "DELIVERY_ID" @@ -21782,7 +21782,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -21856,7 +21856,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -21935,7 +21935,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -21986,7 +21986,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -22037,7 +22037,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -22093,7 +22093,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -22144,7 +22144,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -22236,7 +22236,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22326,7 +22326,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22411,7 +22411,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_name": "my_renamed_branch" @@ -22594,7 +22594,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "branch": "main" @@ -22695,7 +22695,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "base": "master", @@ -22883,7 +22883,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23894,7 +23894,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "required_status_checks": { @@ -24018,7 +24018,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24088,7 +24088,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24159,7 +24159,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24230,7 +24230,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24300,7 +24300,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24579,7 +24579,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "dismissal_restrictions": { @@ -24720,7 +24720,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24790,7 +24790,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24865,7 +24865,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24940,7 +24940,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25010,7 +25010,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25174,7 +25174,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "strict": true, @@ -25263,7 +25263,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25329,7 +25329,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25417,7 +25417,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25514,7 +25514,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25606,7 +25606,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25684,7 +25684,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25836,7 +25836,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25902,7 +25902,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26030,7 +26030,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26158,7 +26158,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26286,7 +26286,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26400,7 +26400,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26501,7 +26501,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26602,7 +26602,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26703,7 +26703,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26790,7 +26790,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26897,7 +26897,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27004,7 +27004,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27111,7 +27111,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28150,7 +28150,7 @@ "key": "example-of-in-progress-conclusion", "request": { "contentType": "application/json", - "description": "

Example of an in_progress conclusion

", + "description": "Example of an in_progress conclusion", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -28269,7 +28269,7 @@ "key": "example-of-completed-conclusion", "request": { "contentType": "application/json", - "description": "

Example of a completed conclusion

", + "description": "Example of a completed conclusion", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -28470,7 +28470,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29567,7 +29567,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -29779,7 +29779,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29859,7 +29859,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29991,7 +29991,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30217,7 +30217,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30382,7 +30382,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3" @@ -30702,7 +30702,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3" @@ -31131,7 +31131,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "auto_trigger_checks": [ @@ -31443,7 +31443,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31809,7 +31809,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31912,7 +31912,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32226,7 +32226,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -32950,7 +32950,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33146,7 +33146,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33345,7 +33345,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "dismissed", @@ -33527,7 +33527,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33705,7 +33705,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33826,7 +33826,7 @@ { "key": "response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33937,7 +33937,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34078,7 +34078,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34167,7 +34167,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34225,7 +34225,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -34286,7 +34286,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key": "KEY" @@ -34378,7 +34378,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34797,7 +34797,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "repository_id": 1, @@ -34962,7 +34962,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "repository_id": 1, @@ -35238,7 +35238,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "repository_id": 1, @@ -35404,7 +35404,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "repository_id": 1, @@ -35633,7 +35633,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -36244,7 +36244,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "repository_id": 1, @@ -36406,7 +36406,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "repository_id": 1, @@ -36614,7 +36614,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "codespace_name": "CODESPACE_NAME" @@ -36856,7 +36856,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "machine": "standardLinux" @@ -37061,7 +37061,7 @@ { "key": "202", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "codespace_name": "CODESPACE_NAME" @@ -37126,7 +37126,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "codespace_name": "CODESPACE_NAME" @@ -37209,7 +37209,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "codespace_name": "CODESPACE_NAME", @@ -37268,7 +37268,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "codespace_name": "CODESPACE_NAME" @@ -37490,7 +37490,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "codespace_name": "CODESPACE_NAME" @@ -37719,7 +37719,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -37807,7 +37807,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "codespace_name": "CODESPACE_NAME" @@ -37923,7 +37923,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -37994,7 +37994,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -38063,7 +38063,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -38155,7 +38155,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -38176,7 +38176,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -38249,7 +38249,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -38307,7 +38307,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38355,7 +38355,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38402,7 +38402,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "secret_name": "SECRET_NAME" @@ -38488,7 +38488,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -38511,7 +38511,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -38576,7 +38576,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "secret_name": "SECRET_NAME" @@ -38621,7 +38621,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "secret_name": "SECRET_NAME" @@ -38943,7 +38943,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -39019,7 +39019,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "secret_name": "SECRET_NAME", @@ -39090,7 +39090,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "secret_name": "SECRET_NAME", @@ -39198,7 +39198,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -39297,7 +39297,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -39396,7 +39396,7 @@ "key": "response-when-a-new-invitation-is-created", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -39591,7 +39591,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -39656,7 +39656,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -39761,7 +39761,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -39963,7 +39963,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -40147,7 +40147,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -40203,7 +40203,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -40381,7 +40381,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "invitation_id": "INVITATION_ID" @@ -40442,7 +40442,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "invitation_id": "INVITATION_ID" @@ -40581,7 +40581,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -40743,7 +40743,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -40842,7 +40842,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -41447,7 +41447,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -41638,7 +41638,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -41984,7 +41984,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42085,7 +42085,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42200,7 +42200,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Nice change" @@ -42307,7 +42307,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42395,7 +42395,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42536,7 +42536,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff", @@ -42671,7 +42671,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42862,7 +42862,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43012,7 +43012,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "success", @@ -43120,7 +43120,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -43190,7 +43190,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -43249,7 +43249,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -43359,7 +43359,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -43384,7 +43384,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -43452,7 +43452,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -43525,7 +43525,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -43669,7 +43669,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -43738,7 +43738,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -43807,7 +43807,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -43885,7 +43885,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43956,7 +43956,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44025,7 +44025,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44117,7 +44117,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -44138,7 +44138,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -44211,7 +44211,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44288,7 +44288,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44416,7 +44416,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44512,7 +44512,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "octocat@octomac", @@ -44595,7 +44595,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44674,7 +44674,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44796,7 +44796,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44995,7 +44995,7 @@ "key": "simple-example", "request": { "contentType": "application/json", - "description": "

Simple example

", + "description": "Simple example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "topic-branch", @@ -45115,7 +45115,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45223,7 +45223,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45307,7 +45307,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45450,7 +45450,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45746,7 +45746,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45889,7 +45889,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45974,7 +45974,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46164,7 +46164,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "environment": "production", @@ -46284,7 +46284,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46365,7 +46365,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -46488,7 +46488,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -46566,7 +46566,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -46640,7 +46640,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -46719,7 +46719,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -46770,7 +46770,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -46859,7 +46859,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -47027,7 +47027,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "schemas": [ @@ -47131,7 +47131,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -47278,7 +47278,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "schemas": [ @@ -47478,7 +47478,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "schemas": [ @@ -47571,7 +47571,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -47644,7 +47644,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -47958,7 +47958,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "schemas": [ @@ -48066,7 +48066,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -48353,7 +48353,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "schemas": [ @@ -48488,7 +48488,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "schemas": [ @@ -48601,7 +48601,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -48669,7 +48669,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -48830,7 +48830,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -48923,7 +48923,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -49046,7 +49046,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -49150,7 +49150,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -49289,7 +49289,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -49358,7 +49358,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -49433,7 +49433,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -49541,7 +49541,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -49647,7 +49647,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -49756,7 +49756,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -49813,7 +49813,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -49870,7 +49870,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -49936,7 +49936,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -50038,7 +50038,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -50158,7 +50158,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -50262,7 +50262,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -50358,7 +50358,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -50470,7 +50470,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -50559,7 +50559,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -50651,7 +50651,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "Content of the blob", @@ -50740,7 +50740,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51014,7 +51014,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -51135,7 +51135,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51260,7 +51260,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51349,7 +51349,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51451,7 +51451,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "refs/heads/featureA", @@ -51556,7 +51556,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "sha": "aa218f56b14c9653891f9e74264a383fa43fefbd", @@ -51641,7 +51641,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51825,7 +51825,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag": "v0.0.1", @@ -51928,7 +51928,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52167,7 +52167,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "base_tree": "9fb037999f264ba9a7fc6274d15fa3ae2ab98312", @@ -52280,7 +52280,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52327,7 +52327,7 @@ { "key": "response-recursively-retrieving-a-tree", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52391,7 +52391,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -52447,7 +52447,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "name": "NAME" @@ -52506,7 +52506,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -52595,7 +52595,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -52650,7 +52650,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -52706,7 +52706,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52805,7 +52805,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52870,7 +52870,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52912,7 +52912,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -52992,7 +52992,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -53034,7 +53034,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -53205,7 +53205,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -53621,7 +53621,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -54059,7 +54059,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -54397,7 +54397,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Found a bug", @@ -54650,7 +54650,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -55021,7 +55021,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Found a bug", @@ -55297,7 +55297,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -55378,7 +55378,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -55523,7 +55523,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -55866,7 +55866,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -55957,7 +55957,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -56040,7 +56040,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "assignees": [ @@ -56283,7 +56283,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "assignees": [ @@ -56560,7 +56560,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -56666,7 +56666,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -56778,7 +56778,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Me too" @@ -56882,7 +56882,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -56975,7 +56975,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -57093,7 +57093,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Me too" @@ -57220,7 +57220,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -57457,7 +57457,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -57759,7 +57759,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -57885,7 +57885,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -57990,7 +57990,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -58105,7 +58105,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -58205,7 +58205,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -58283,7 +58283,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -58378,7 +58378,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -58487,7 +58487,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "bug", @@ -58574,7 +58574,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -58682,7 +58682,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_name": "bug :bug:", @@ -58762,7 +58762,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -58845,7 +58845,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -58985,7 +58985,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -59128,7 +59128,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "v1.0", @@ -59244,7 +59244,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -59395,7 +59395,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "v1.0", @@ -59504,7 +59504,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -59593,7 +59593,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -59669,7 +59669,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -59767,7 +59767,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "license": "LICENSE" @@ -59859,7 +59859,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -59962,7 +59962,7 @@ "key": "200", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -60026,7 +60026,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -60058,7 +60058,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -60151,7 +60151,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -60183,7 +60183,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -60239,7 +60239,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60340,7 +60340,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60411,7 +60411,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60490,7 +60490,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60587,7 +60587,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60757,7 +60757,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60851,7 +60851,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60992,7 +60992,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61114,7 +61114,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61211,7 +61211,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61383,7 +61383,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -61669,7 +61669,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "repositories": [ @@ -61914,7 +61914,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -62132,7 +62132,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -62191,7 +62191,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -62259,7 +62259,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -62337,7 +62337,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -62505,7 +62505,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -62633,7 +62633,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "vcs": "subversion", @@ -62769,7 +62769,7 @@ "key": "example-1", "request": { "contentType": "application/json", - "description": "

Update authentication for an import

", + "description": "Update authentication for an import", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "vcs_username": "octocat", @@ -62800,7 +62800,7 @@ "key": "example-2", "request": { "contentType": "application/json", - "description": "

Updating the project choice

", + "description": "Updating the project choice", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "vcs": "tfvc", @@ -62839,7 +62839,7 @@ "key": "example-3", "request": { "contentType": "application/json", - "description": "

Restarting an import

", + "description": "Restarting an import", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -62911,7 +62911,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -62975,7 +62975,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63093,7 +63093,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "email": "hubot@github.com", @@ -63171,7 +63171,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63262,7 +63262,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "use_lfs": "opt_in" @@ -63342,7 +63342,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -63639,7 +63639,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -63868,7 +63868,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "migration_id": "MIGRATION_ID" @@ -64130,7 +64130,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "migration_id": "MIGRATION_ID" @@ -64200,7 +64200,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "migration_id": "MIGRATION_ID", @@ -64280,7 +64280,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "migration_id": "MIGRATION_ID" @@ -64457,7 +64457,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -64532,7 +64532,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "grant_id": "GRANT_ID" @@ -64604,7 +64604,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "grant_id": "GRANT_ID" @@ -64679,7 +64679,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -64822,7 +64822,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -64972,7 +64972,7 @@ "key": "response-if-returning-an-existing-token", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766" @@ -65009,7 +65009,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766" @@ -65162,7 +65162,7 @@ "key": "response-if-returning-an-existing-token", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -65200,7 +65200,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -65276,7 +65276,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -65430,7 +65430,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -65501,7 +65501,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -65571,7 +65571,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -65634,7 +65634,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -65938,7 +65938,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "billing_email": "mona@github.com", @@ -66120,7 +66120,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -66221,7 +66221,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -66301,7 +66301,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -66369,7 +66369,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -66480,7 +66480,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -66569,7 +66569,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -66634,7 +66634,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -66711,7 +66711,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -66770,7 +66770,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -66829,7 +66829,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -66877,7 +66877,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "organization_id": "ORGANIZATION_ID" @@ -66956,7 +66956,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -67058,7 +67058,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -67189,7 +67189,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "email": "octocat@github.com", @@ -67290,7 +67290,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -67371,7 +67371,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -67485,7 +67485,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -67570,7 +67570,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -67633,7 +67633,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -67692,7 +67692,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -67812,7 +67812,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -67916,7 +67916,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -67988,7 +67988,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -68065,7 +68065,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -68124,7 +68124,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -68183,7 +68183,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -68251,7 +68251,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -68392,7 +68392,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -68500,7 +68500,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "active" @@ -68635,7 +68635,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -68712,7 +68712,7 @@ { "key": "202", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -68727,7 +68727,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -68794,7 +68794,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -68864,7 +68864,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -69149,7 +69149,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -69243,7 +69243,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -69494,7 +69494,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "active": true, @@ -69582,7 +69582,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -69641,7 +69641,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -69761,7 +69761,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -69841,7 +69841,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -69942,7 +69942,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -70059,7 +70059,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -70123,7 +70123,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -70207,7 +70207,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -70351,7 +70351,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -70456,7 +70456,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -70550,7 +70550,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -70667,7 +70667,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -70788,7 +70788,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -70889,7 +70889,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -70984,7 +70984,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -71066,7 +71066,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -71190,7 +71190,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -71352,7 +71352,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -71436,7 +71436,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -71543,7 +71543,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -71662,7 +71662,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -71753,7 +71753,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -71838,7 +71838,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -71928,7 +71928,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -72072,7 +72072,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -72244,7 +72244,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -72338,7 +72338,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -72423,7 +72423,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -72561,7 +72561,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -72659,7 +72659,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -72754,7 +72754,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "package_type": "PACKAGE_TYPE", @@ -72827,7 +72827,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -72978,7 +72978,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "source": { @@ -73141,7 +73141,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "cname": "octocatblog.com", @@ -73211,7 +73211,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73292,7 +73292,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73381,7 +73381,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73441,7 +73441,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73537,7 +73537,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73625,7 +73625,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73787,7 +73787,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -73893,7 +73893,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Organization Roadmap", @@ -73997,7 +73997,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -74154,7 +74154,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -74258,7 +74258,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -74365,7 +74365,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74497,7 +74497,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Projects Documentation", @@ -74621,7 +74621,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -74747,7 +74747,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -74836,7 +74836,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -74959,7 +74959,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -75057,7 +75057,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -75145,7 +75145,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -75243,7 +75243,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -75376,7 +75376,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -75509,7 +75509,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -75626,7 +75626,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -75701,7 +75701,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -75776,7 +75776,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -75868,7 +75868,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -75954,7 +75954,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -76022,7 +76022,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -76094,7 +76094,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -76173,7 +76173,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -76257,7 +76257,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -76421,7 +76421,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -77072,7 +77072,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Amazing new feature", @@ -77684,7 +77684,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -78346,7 +78346,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "new title", @@ -78977,7 +78977,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -79141,7 +79141,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -79229,7 +79229,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -79341,7 +79341,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -79443,7 +79443,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "expected_head_sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e" @@ -79573,7 +79573,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -79696,7 +79696,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -79833,7 +79833,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "I like this too!" @@ -79958,7 +79958,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -80082,7 +80082,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -80305,7 +80305,7 @@ "key": "example-for-a-multi-line-comment", "request": { "contentType": "application/json", - "description": "

Example for a multi-line comment

", + "description": "Example for a multi-line comment", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff!", @@ -80464,7 +80464,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff!" @@ -80614,7 +80614,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -80746,7 +80746,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "reviewers": [ @@ -81414,7 +81414,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "reviewers": [ @@ -81513,7 +81513,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -81822,7 +81822,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "commit_id": "ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091", @@ -81956,7 +81956,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -82086,7 +82086,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "This is close to perfect! Please address the suggested inline change. And add more about this." @@ -82208,7 +82208,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -82349,7 +82349,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -82503,7 +82503,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -82651,7 +82651,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -82744,7 +82744,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -82903,7 +82903,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -83028,7 +83028,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -83076,7 +83076,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -83194,7 +83194,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -83298,7 +83298,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -83413,7 +83413,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -83460,7 +83460,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -83568,7 +83568,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -83671,7 +83671,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -83790,7 +83790,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -83837,7 +83837,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -83949,7 +83949,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -84052,7 +84052,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -84171,7 +84171,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -84218,7 +84218,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -84330,7 +84330,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -84433,7 +84433,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -84556,7 +84556,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -84603,7 +84603,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -84715,7 +84715,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -84818,7 +84818,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -84937,7 +84937,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -84984,7 +84984,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -85096,7 +85096,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -85197,7 +85197,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -85314,7 +85314,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -85361,7 +85361,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -85473,7 +85473,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -85576,7 +85576,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -85691,7 +85691,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -85814,7 +85814,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -85919,7 +85919,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -86027,7 +86027,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -86240,7 +86240,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -86426,7 +86426,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -86496,7 +86496,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -86637,7 +86637,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -86782,7 +86782,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -86992,7 +86992,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -87145,7 +87145,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -87212,7 +87212,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -87351,7 +87351,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "foo-1.0.0-osx.zip", @@ -87455,7 +87455,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -87538,7 +87538,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -87658,7 +87658,7 @@ "key": "default", "request": { "contentType": "*/*", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -87812,7 +87812,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -88144,7 +88144,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Hello-World", @@ -88340,7 +88340,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -89379,7 +89379,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Hello-World", @@ -89969,7 +89969,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90036,7 +90036,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90091,7 +90091,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90155,7 +90155,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90264,7 +90264,7 @@ { "key": "response-if-repository-contains-content", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90379,7 +90379,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "event_type": "on-demand-test", @@ -90445,7 +90445,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90523,7 +90523,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90609,7 +90609,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90699,7 +90699,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90781,7 +90781,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "names": [ @@ -90884,7 +90884,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_owner": "github", @@ -91173,7 +91173,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -91232,7 +91232,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -91287,7 +91287,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -91391,7 +91391,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "owner": "octocat", @@ -91561,7 +91561,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -91783,7 +91783,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -92172,7 +92172,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -92425,7 +92425,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -92598,7 +92598,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -92681,7 +92681,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "key_prefix": "TICKET-", @@ -92759,7 +92759,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -92834,7 +92834,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -92915,7 +92915,7 @@ { "key": "response-if-content-is-a-file", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -92950,7 +92950,7 @@ { "key": "response-if-content-is-a-directory", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -93001,7 +93001,7 @@ { "key": "response-if-content-is-a-symlink", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -93035,7 +93035,7 @@ { "key": "response-if-content-is-a-submodule", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -93331,7 +93331,7 @@ "key": "example-for-creating-a-file", "request": { "contentType": "application/json", - "description": "

Example for creating a file

", + "description": "Example for creating a file", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -93409,7 +93409,7 @@ "key": "example-for-updating-a-file", "request": { "contentType": "application/json", - "description": "

Example for updating a file

", + "description": "Example for updating a file", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "a new commit message", @@ -93692,7 +93692,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -93819,7 +93819,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -93920,7 +93920,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -94012,7 +94012,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -94077,7 +94077,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -94169,7 +94169,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -94356,7 +94356,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -94939,7 +94939,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -94998,7 +94998,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -95055,7 +95055,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -95136,7 +95136,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "pattern": "v1.*" @@ -95215,7 +95215,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -95300,7 +95300,7 @@ { "key": "response-with-filter", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -95352,7 +95352,7 @@ { "key": "response-without-filter", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -95704,7 +95704,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -95813,7 +95813,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -96133,7 +96133,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -96442,7 +96442,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -96548,7 +96548,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -96654,7 +96654,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -96840,7 +96840,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -97069,7 +97069,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -97282,7 +97282,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -97414,7 +97414,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -97597,7 +97597,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -97774,7 +97774,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -97918,7 +97918,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -98520,7 +98520,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -99131,7 +99131,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -99255,7 +99255,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -99383,7 +99383,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "resolved", @@ -99518,7 +99518,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -99640,7 +99640,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -99786,7 +99786,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Justice League", @@ -99903,7 +99903,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -100071,7 +100071,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -100180,7 +100180,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -100253,7 +100253,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -100361,7 +100361,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -100488,7 +100488,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -100557,7 +100557,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -100631,7 +100631,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -100811,7 +100811,7 @@ { "key": "alternative-response-with-repository-permissions", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -101163,7 +101163,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -101238,7 +101238,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -101313,7 +101313,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -101388,7 +101388,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -101546,7 +101546,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -101615,7 +101615,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -101730,7 +101730,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -101801,7 +101801,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -101903,7 +101903,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -102020,7 +102020,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -102087,7 +102087,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -102159,7 +102159,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -102333,7 +102333,7 @@ { "key": "alternative-response-with-extra-repository-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -102672,7 +102672,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -102745,7 +102745,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -102810,7 +102810,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -102905,7 +102905,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -103063,7 +103063,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -103187,7 +103187,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like apples?" @@ -103310,7 +103310,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -103442,7 +103442,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like pineapples?" @@ -103566,7 +103566,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -103655,7 +103655,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -103769,7 +103769,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like apples?" @@ -103882,7 +103882,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -104004,7 +104004,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like pineapples?" @@ -104118,7 +104118,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -104217,7 +104217,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -104355,7 +104355,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Our first team post", @@ -104474,7 +104474,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -104610,7 +104610,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Welcome to our first team post" @@ -104729,7 +104729,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -104808,7 +104808,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -104936,7 +104936,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Our first team post", @@ -105045,7 +105045,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -105171,7 +105171,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Welcome to our first team post" @@ -105280,7 +105280,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -105337,7 +105337,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -105438,7 +105438,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -105507,7 +105507,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -105591,7 +105591,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "group_id": 123 @@ -105679,7 +105679,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -105754,7 +105754,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -105877,7 +105877,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -105964,7 +105964,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -106055,7 +106055,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -106134,7 +106134,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -106203,7 +106203,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -106316,7 +106316,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -106397,7 +106397,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -106456,7 +106456,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -106523,7 +106523,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -106582,7 +106582,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -106663,7 +106663,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -106736,7 +106736,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -106805,7 +106805,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -106874,7 +106874,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -107027,7 +107027,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "groups": [ @@ -107097,7 +107097,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -107325,7 +107325,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "groups": [ @@ -107391,7 +107391,7 @@ { "key": "response-with-public-and-private-profile-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -107449,7 +107449,7 @@ { "key": "response-with-public-profile-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -107623,7 +107623,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -107741,7 +107741,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -107810,7 +107810,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -107859,7 +107859,7 @@ { "key": "response-with-git-hub-plan-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -107973,7 +107973,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -108028,7 +108028,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -108109,7 +108109,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -108170,7 +108170,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -108235,7 +108235,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -108303,7 +108303,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -108383,7 +108383,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -108459,7 +108459,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -108550,7 +108550,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -108621,7 +108621,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -108699,7 +108699,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -108785,7 +108785,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -108862,7 +108862,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -108923,7 +108923,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -108984,7 +108984,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -109063,7 +109063,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -109149,7 +109149,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -109226,7 +109226,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME", @@ -109287,7 +109287,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -109384,7 +109384,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -109482,7 +109482,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gpg_key_id": "GPG_KEY_ID" @@ -109579,7 +109579,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gpg_key_id": "GPG_KEY_ID" @@ -109662,7 +109662,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -109756,7 +109756,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -109849,7 +109849,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -109921,7 +109921,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_id": "KEY_ID" @@ -109992,7 +109992,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_id": "KEY_ID" @@ -110071,7 +110071,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -110145,7 +110145,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -110275,7 +110275,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -110367,7 +110367,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -110478,7 +110478,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -110605,7 +110605,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -110690,7 +110690,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -110989,7 +110989,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -111105,7 +111105,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -111430,7 +111430,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "active": true, @@ -111536,7 +111536,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -111605,7 +111605,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -111674,7 +111674,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", diff --git a/lib/rest/static/decorated/ghes-3.1.json b/lib/rest/static/decorated/ghes-3.1.json index 2c8f086fc7..28feafbe5f 100644 --- a/lib/rest/static/decorated/ghes-3.1.json +++ b/lib/rest/static/decorated/ghes-3.1.json @@ -52,7 +52,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -146,7 +146,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -224,7 +224,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -298,7 +298,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -382,7 +382,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -461,7 +461,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -542,7 +542,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled_organizations": "all", @@ -609,7 +609,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -689,7 +689,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_organization_ids": [ @@ -749,7 +749,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -804,7 +804,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -850,7 +850,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -927,7 +927,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -980,7 +980,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1061,7 +1061,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled_repositories": "all", @@ -1128,7 +1128,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1316,7 +1316,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -1376,7 +1376,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -1431,7 +1431,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -1477,7 +1477,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1554,7 +1554,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -1616,7 +1616,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -1702,7 +1702,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled": true, @@ -1761,7 +1761,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -1848,7 +1848,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -1922,7 +1922,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1992,7 +1992,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -2051,7 +2051,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2161,7 +2161,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2186,7 +2186,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2254,7 +2254,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2327,7 +2327,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2471,7 +2471,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -2540,7 +2540,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2609,7 +2609,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2687,7 +2687,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2758,7 +2758,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2827,7 +2827,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2919,7 +2919,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2940,7 +2940,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3013,7 +3013,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -3080,7 +3080,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -3216,7 +3216,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -3292,7 +3292,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3392,7 +3392,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -3461,7 +3461,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3534,7 +3534,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3624,7 +3624,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_organization_ids": [ @@ -3694,7 +3694,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3759,7 +3759,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3833,7 +3833,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3962,7 +3962,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "runners": [ @@ -4032,7 +4032,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4097,7 +4097,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4162,7 +4162,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -4303,7 +4303,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -4380,7 +4380,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -4481,7 +4481,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -4551,7 +4551,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -4624,7 +4624,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -4940,7 +4940,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -5010,7 +5010,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5075,7 +5075,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5149,7 +5149,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5278,7 +5278,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "runners": [ @@ -5348,7 +5348,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5413,7 +5413,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5480,7 +5480,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -5584,7 +5584,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -5662,7 +5662,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -5712,7 +5712,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -5771,7 +5771,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -5856,7 +5856,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -5920,7 +5920,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -6024,7 +6024,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -6102,7 +6102,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -6152,7 +6152,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -6211,7 +6211,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -6296,7 +6296,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -6369,7 +6369,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -6483,7 +6483,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -6571,7 +6571,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -6631,7 +6631,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -6700,7 +6700,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -6795,7 +6795,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -6862,7 +6862,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7025,7 +7025,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7122,7 +7122,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7381,7 +7381,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7637,7 +7637,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7878,7 +7878,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7943,7 +7943,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8012,7 +8012,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8077,7 +8077,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8150,7 +8150,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8311,7 +8311,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8569,7 +8569,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8670,7 +8670,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8755,7 +8755,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8851,7 +8851,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "topic-branch", @@ -8930,7 +8930,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8990,7 +8990,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -9071,7 +9071,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9151,7 +9151,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -9223,7 +9223,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9287,7 +9287,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -9359,7 +9359,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME", @@ -9423,7 +9423,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -9486,7 +9486,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -9549,7 +9549,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -9586,7 +9586,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -9724,7 +9724,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -9880,7 +9880,7 @@ "key": "202", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -9892,7 +9892,7 @@ "key": "205", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -9950,7 +9950,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -10092,7 +10092,7 @@ { "key": "205", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -10145,7 +10145,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -10223,7 +10223,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -10289,7 +10289,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -10413,7 +10413,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10567,7 +10567,7 @@ "key": "202", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10583,7 +10583,7 @@ "key": "205", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10662,7 +10662,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10700,7 +10700,7 @@ { "key": "alternative-response-with-star-creation-timestamps", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10813,7 +10813,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -10949,7 +10949,7 @@ { "key": "alternative-response-with-star-creation-timestamps", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -11140,7 +11140,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11211,7 +11211,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11282,7 +11282,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11390,7 +11390,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -11589,7 +11589,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11667,7 +11667,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11759,7 +11759,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11823,7 +11823,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11878,7 +11878,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -12057,7 +12057,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -12202,7 +12202,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -12286,7 +12286,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "code": "CODE" @@ -12413,7 +12413,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -12513,7 +12513,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -12618,7 +12618,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -13536,7 +13536,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "respoitory": "Hello-World", @@ -13743,7 +13743,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -13797,7 +13797,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -13846,7 +13846,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "app_slug": "APP_SLUG" @@ -13941,7 +13941,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -14046,7 +14046,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -14151,7 +14151,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -14259,7 +14259,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -14428,7 +14428,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -14516,7 +14516,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -14604,7 +14604,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -14787,7 +14787,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -14988,7 +14988,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1, @@ -15060,7 +15060,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1, @@ -15136,7 +15136,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -15202,7 +15202,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -15264,7 +15264,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -15379,7 +15379,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -15490,7 +15490,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -16447,7 +16447,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a", @@ -16603,7 +16603,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -16710,7 +16710,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -16813,7 +16813,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -16851,7 +16851,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -16948,7 +16948,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content_type": "json", @@ -17043,7 +17043,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -17133,7 +17133,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -17218,7 +17218,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_name": "my_renamed_branch" @@ -17419,7 +17419,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "base": "master", @@ -17607,7 +17607,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18467,7 +18467,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "required_status_checks": { @@ -18593,7 +18593,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18663,7 +18663,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18734,7 +18734,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18805,7 +18805,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18875,7 +18875,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19089,7 +19089,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "dismissal_restrictions": { @@ -19232,7 +19232,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19302,7 +19302,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19379,7 +19379,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19456,7 +19456,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19528,7 +19528,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19631,7 +19631,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "strict": true, @@ -19720,7 +19720,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19786,7 +19786,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19874,7 +19874,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19971,7 +19971,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20063,7 +20063,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20141,7 +20141,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20293,7 +20293,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20359,7 +20359,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20487,7 +20487,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20615,7 +20615,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20743,7 +20743,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20857,7 +20857,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20958,7 +20958,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21059,7 +21059,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21160,7 +21160,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21247,7 +21247,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21354,7 +21354,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21461,7 +21461,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21568,7 +21568,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22607,7 +22607,7 @@ "key": "example-of-in-progress-conclusion", "request": { "contentType": "application/json", - "description": "

Example of an in_progress conclusion

", + "description": "Example of an in_progress conclusion", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -22726,7 +22726,7 @@ "key": "example-of-completed-conclusion", "request": { "contentType": "application/json", - "description": "

Example of a completed conclusion

", + "description": "Example of a completed conclusion", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -22927,7 +22927,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24024,7 +24024,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -24236,7 +24236,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24371,7 +24371,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24597,7 +24597,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24762,7 +24762,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3" @@ -25079,7 +25079,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3" @@ -25505,7 +25505,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "auto_trigger_checks": [ @@ -25814,7 +25814,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26177,7 +26177,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26280,7 +26280,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26590,7 +26590,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26772,7 +26772,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26952,7 +26952,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "dismissed", @@ -27132,7 +27132,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27308,7 +27308,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27429,7 +27429,7 @@ { "key": "response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27540,7 +27540,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27681,7 +27681,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27770,7 +27770,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27828,7 +27828,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -27889,7 +27889,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key": "KEY" @@ -27997,7 +27997,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28093,7 +28093,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28192,7 +28192,7 @@ "key": "response-when-a-new-invitation-is-created", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28387,7 +28387,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28452,7 +28452,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28556,7 +28556,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28758,7 +28758,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28942,7 +28942,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28998,7 +28998,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -29176,7 +29176,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "invitation_id": "INVITATION_ID" @@ -29237,7 +29237,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "invitation_id": "INVITATION_ID" @@ -29376,7 +29376,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29538,7 +29538,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29639,7 +29639,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30244,7 +30244,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30417,7 +30417,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30763,7 +30763,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30866,7 +30866,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30983,7 +30983,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Nice change" @@ -31090,7 +31090,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31178,7 +31178,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31321,7 +31321,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff", @@ -31456,7 +31456,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31647,7 +31647,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31797,7 +31797,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "success", @@ -31913,7 +31913,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32009,7 +32009,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "octocat@octomac", @@ -32092,7 +32092,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32171,7 +32171,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32293,7 +32293,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32494,7 +32494,7 @@ "key": "simple-example", "request": { "contentType": "application/json", - "description": "

Simple example

", + "description": "Simple example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "topic-branch", @@ -32616,7 +32616,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32727,7 +32727,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32820,7 +32820,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33013,7 +33013,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "environment": "production", @@ -33136,7 +33136,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33220,7 +33220,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33261,7 +33261,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33350,7 +33350,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33382,7 +33382,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33414,7 +33414,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33446,7 +33446,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33478,7 +33478,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33510,7 +33510,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33542,7 +33542,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33574,7 +33574,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33606,7 +33606,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33638,7 +33638,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33672,7 +33672,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33739,7 +33739,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33776,7 +33776,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33829,7 +33829,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -34024,7 +34024,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -34111,7 +34111,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -34307,7 +34307,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "events": [ @@ -34381,7 +34381,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -34428,7 +34428,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -34488,7 +34488,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ldap_dn": "cn=Enterprise Ops,ou=teams,dc=github,dc=com" @@ -34554,7 +34554,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -34614,7 +34614,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ldap_dn": "uid=asdf,ou=users,dc=github,dc=com" @@ -34710,7 +34710,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -34751,7 +34751,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -34794,7 +34794,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -34852,7 +34852,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -34884,7 +34884,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -34950,7 +34950,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "maintenance": "{\"enabled\":true, \"when\":\"now\"}" @@ -35008,7 +35008,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35192,7 +35192,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "settings": "{ \"enterprise\": { \"public_pages\": true }}" @@ -35227,7 +35227,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35285,7 +35285,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "authorized_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCssTL/Vtu/ODLTj0VtZoRAbvf7uiv5997GyDq0MoAZUjb5jmA5wYe2/wF6sFuhiZTnZoF1ZtCHunPp0hM/GHrn6VySBhNncx14YO8FPt1CIhEeRMSEjUK9cY3xAbS365oXY8vnUHJsS9+1tr/2bx/+4NJfcUt/Ezf1OR/0LStQXw==" @@ -35346,7 +35346,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "authorized_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCssTL/Vtu/ODLTj0VtZoRAbvf7uiv5997GyDq0MoAZUjb5jmA5wYe2/wF6sFuhiZTnZoF1ZtCHunPp0hM/GHrn6VySBhNncx14YO8FPt1CIhEeRMSEjUK9cY3xAbS365oXY8vnUHJsS9+1tr/2bx/+4NJfcUt/Ezf1OR/0LStQXw==" @@ -35425,7 +35425,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35468,7 +35468,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35559,7 +35559,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -35625,7 +35625,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -35710,7 +35710,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enforcement": "enabled", @@ -35779,7 +35779,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -35856,7 +35856,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "github", @@ -35929,7 +35929,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "the-new-octocats" @@ -36022,7 +36022,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -36111,7 +36111,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "DevTools Hook Env", @@ -36176,7 +36176,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -36260,7 +36260,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -36328,7 +36328,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -36379,7 +36379,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -36437,7 +36437,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -36531,7 +36531,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -36657,7 +36657,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Check Commits", @@ -36743,7 +36743,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_hook_id": "PRE_RECEIVE_HOOK_ID" @@ -36880,7 +36880,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Check Commits", @@ -36964,7 +36964,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_hook_id": "PRE_RECEIVE_HOOK_ID" @@ -37069,7 +37069,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -37144,7 +37144,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -37234,7 +37234,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enforcement": "enabled" @@ -37311,7 +37311,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -37416,7 +37416,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37485,7 +37485,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_ids": "KEY_IDS" @@ -37539,7 +37539,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37616,7 +37616,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "token_id": "TOKEN_ID" @@ -37671,7 +37671,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "monalisa", @@ -37749,7 +37749,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "thenewmonalisa" @@ -37802,7 +37802,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -37861,7 +37861,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -37897,7 +37897,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -37967,7 +37967,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -38012,7 +38012,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -38057,7 +38057,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -38113,7 +38113,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -38169,7 +38169,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -38236,7 +38236,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38397,7 +38397,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38490,7 +38490,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38613,7 +38613,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38717,7 +38717,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -38856,7 +38856,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -38925,7 +38925,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -39000,7 +39000,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -39108,7 +39108,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -39214,7 +39214,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -39323,7 +39323,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -39380,7 +39380,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -39437,7 +39437,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -39503,7 +39503,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -39605,7 +39605,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -39725,7 +39725,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -39829,7 +39829,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -39925,7 +39925,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -40037,7 +40037,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -40126,7 +40126,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -40218,7 +40218,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "Content of the blob", @@ -40307,7 +40307,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -40581,7 +40581,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -40702,7 +40702,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -40827,7 +40827,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -40916,7 +40916,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -41018,7 +41018,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "refs/heads/featureA", @@ -41123,7 +41123,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "sha": "aa218f56b14c9653891f9e74264a383fa43fefbd", @@ -41208,7 +41208,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -41392,7 +41392,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag": "v0.0.1", @@ -41495,7 +41495,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -41734,7 +41734,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "base_tree": "9fb037999f264ba9a7fc6274d15fa3ae2ab98312", @@ -41847,7 +41847,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -41894,7 +41894,7 @@ { "key": "response-recursively-retrieving-a-tree", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -41958,7 +41958,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -42014,7 +42014,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "name": "NAME" @@ -42198,7 +42198,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -42616,7 +42616,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -43056,7 +43056,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43397,7 +43397,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Found a bug", @@ -43650,7 +43650,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44023,7 +44023,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Found a bug", @@ -44299,7 +44299,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44380,7 +44380,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44525,7 +44525,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -44870,7 +44870,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44961,7 +44961,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45044,7 +45044,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "assignees": [ @@ -45287,7 +45287,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "assignees": [ @@ -45564,7 +45564,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45672,7 +45672,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45787,7 +45787,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Me too" @@ -45891,7 +45891,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45984,7 +45984,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46104,7 +46104,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Me too" @@ -46231,7 +46231,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46470,7 +46470,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46774,7 +46774,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46902,7 +46902,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47007,7 +47007,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -47122,7 +47122,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -47222,7 +47222,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47300,7 +47300,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47395,7 +47395,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47504,7 +47504,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "bug", @@ -47591,7 +47591,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47699,7 +47699,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_name": "bug :bug:", @@ -47779,7 +47779,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47862,7 +47862,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48002,7 +48002,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48145,7 +48145,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "v1.0", @@ -48261,7 +48261,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48412,7 +48412,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "v1.0", @@ -48521,7 +48521,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48610,7 +48610,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48689,7 +48689,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -48787,7 +48787,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "license": "LICENSE" @@ -48879,7 +48879,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48982,7 +48982,7 @@ "key": "200", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -49046,7 +49046,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -49078,7 +49078,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -49135,7 +49135,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -49167,7 +49167,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -49223,7 +49223,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49294,7 +49294,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49373,7 +49373,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49470,7 +49470,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49640,7 +49640,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49729,7 +49729,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -49804,7 +49804,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "grant_id": "GRANT_ID" @@ -49876,7 +49876,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "grant_id": "GRANT_ID" @@ -49951,7 +49951,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -50105,7 +50105,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -50254,7 +50254,7 @@ "key": "response-if-returning-an-existing-token", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766" @@ -50290,7 +50290,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766" @@ -50442,7 +50442,7 @@ "key": "response-if-returning-an-existing-token", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -50479,7 +50479,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -50554,7 +50554,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -50707,7 +50707,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -50777,7 +50777,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -50847,7 +50847,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -50910,7 +50910,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -51185,7 +51185,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "billing_email": "mona@github.com", @@ -51323,7 +51323,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -51434,7 +51434,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -51523,7 +51523,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -51635,7 +51635,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -51720,7 +51720,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -51783,7 +51783,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -51842,7 +51842,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -51962,7 +51962,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -52066,7 +52066,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -52138,7 +52138,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -52215,7 +52215,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -52274,7 +52274,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -52333,7 +52333,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -52401,7 +52401,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -52542,7 +52542,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -52650,7 +52650,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "active" @@ -52785,7 +52785,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -52862,7 +52862,7 @@ { "key": "202", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -52877,7 +52877,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -52944,7 +52944,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -53014,7 +53014,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -53298,7 +53298,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -53391,7 +53391,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -53641,7 +53641,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "active": true, @@ -53728,7 +53728,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -53787,7 +53787,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -53907,7 +53907,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -53969,7 +53969,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54031,7 +54031,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -54182,7 +54182,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "source": { @@ -54347,7 +54347,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "cname": "octocatblog.com", @@ -54417,7 +54417,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -54500,7 +54500,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -54589,7 +54589,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -54649,7 +54649,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -54745,7 +54745,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -54861,7 +54861,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -54969,7 +54969,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Organization Roadmap", @@ -55075,7 +55075,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -55234,7 +55234,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -55340,7 +55340,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -55449,7 +55449,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -55583,7 +55583,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Projects Documentation", @@ -55709,7 +55709,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -55841,7 +55841,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -55932,7 +55932,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -56057,7 +56057,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -56157,7 +56157,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -56247,7 +56247,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -56347,7 +56347,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -56482,7 +56482,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -56617,7 +56617,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -56736,7 +56736,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -56813,7 +56813,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -56890,7 +56890,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -56984,7 +56984,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -57072,7 +57072,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -57142,7 +57142,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -57216,7 +57216,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -57297,7 +57297,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -57383,7 +57383,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -57549,7 +57549,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -58198,7 +58198,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Amazing new feature", @@ -58810,7 +58810,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -59472,7 +59472,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "new title", @@ -60103,7 +60103,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60267,7 +60267,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60355,7 +60355,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60467,7 +60467,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60569,7 +60569,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "expected_head_sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e" @@ -60701,7 +60701,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60827,7 +60827,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60967,7 +60967,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "I like this too!" @@ -61094,7 +61094,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61218,7 +61218,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61444,7 +61444,7 @@ "key": "example-for-a-multi-line-comment", "request": { "contentType": "application/json", - "description": "

Example for a multi-line comment

", + "description": "Example for a multi-line comment", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff!", @@ -61605,7 +61605,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff!" @@ -61755,7 +61755,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61887,7 +61887,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "reviewers": [ @@ -62548,7 +62548,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "reviewers": [ @@ -62647,7 +62647,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -62956,7 +62956,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "commit_id": "ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091", @@ -63090,7 +63090,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63220,7 +63220,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "This is close to perfect! Please address the suggested inline change. And add more about this." @@ -63342,7 +63342,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63483,7 +63483,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63637,7 +63637,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63785,7 +63785,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63878,7 +63878,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -64037,7 +64037,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -64164,7 +64164,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -64212,7 +64212,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -64332,7 +64332,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -64438,7 +64438,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -64555,7 +64555,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -64602,7 +64602,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -64712,7 +64712,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -64762,7 +64762,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "reaction_id": "REACTION_ID" @@ -64880,7 +64880,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65001,7 +65001,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -65048,7 +65048,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -65166,7 +65166,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65271,7 +65271,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65392,7 +65392,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -65439,7 +65439,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -65553,7 +65553,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65658,7 +65658,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65783,7 +65783,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -65830,7 +65830,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -65944,7 +65944,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -66049,7 +66049,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -66170,7 +66170,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -66217,7 +66217,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -66331,7 +66331,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -66436,7 +66436,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -66553,7 +66553,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -66678,7 +66678,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -66785,7 +66785,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -66895,7 +66895,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67089,7 +67089,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -67232,7 +67232,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67373,7 +67373,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67518,7 +67518,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67719,7 +67719,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -67868,7 +67868,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67935,7 +67935,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68074,7 +68074,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "foo-1.0.0-osx.zip", @@ -68178,7 +68178,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68261,7 +68261,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68381,7 +68381,7 @@ "key": "default", "request": { "contentType": "*/*", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68535,7 +68535,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -68860,7 +68860,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Hello-World", @@ -69055,7 +69055,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -69570,7 +69570,7 @@ { "key": "response-with-scarlet-witch-preview-media-type", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70308,7 +70308,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Hello-World", @@ -70893,7 +70893,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70987,7 +70987,7 @@ { "key": "response-if-repository-contains-content", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71102,7 +71102,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "event_type": "on-demand-test", @@ -71168,7 +71168,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71246,7 +71246,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71332,7 +71332,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71422,7 +71422,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71510,7 +71510,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "names": [ @@ -71619,7 +71619,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_owner": "github", @@ -71954,7 +71954,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "owner": "octocat", @@ -72142,7 +72142,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -72364,7 +72364,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -72739,7 +72739,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -72991,7 +72991,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -73176,7 +73176,7 @@ { "key": "response-if-content-is-a-file", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73211,7 +73211,7 @@ { "key": "response-if-content-is-a-directory", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73262,7 +73262,7 @@ { "key": "response-if-content-is-a-symlink", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73296,7 +73296,7 @@ { "key": "response-if-content-is-a-submodule", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73592,7 +73592,7 @@ "key": "example-for-creating-a-file", "request": { "contentType": "application/json", - "description": "

Example for creating a file

", + "description": "Example for creating a file", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -73670,7 +73670,7 @@ "key": "example-for-updating-a-file", "request": { "contentType": "application/json", - "description": "

Example for updating a file

", + "description": "Example for updating a file", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "a new commit message", @@ -73953,7 +73953,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -74080,7 +74080,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74181,7 +74181,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74273,7 +74273,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74338,7 +74338,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74430,7 +74430,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74617,7 +74617,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -75228,7 +75228,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -75414,7 +75414,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -75645,7 +75645,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -75858,7 +75858,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -75990,7 +75990,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -76175,7 +76175,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -76358,7 +76358,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -76502,7 +76502,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -76622,7 +76622,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -76746,7 +76746,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "resolved", @@ -76864,7 +76864,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -77019,7 +77019,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Justice League", @@ -77135,7 +77135,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -77302,7 +77302,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -77410,7 +77410,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -77483,7 +77483,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -77593,7 +77593,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -77722,7 +77722,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -77793,7 +77793,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -77867,7 +77867,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -78047,7 +78047,7 @@ { "key": "alternative-response-with-repository-permissions", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -78394,7 +78394,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -78469,7 +78469,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -78544,7 +78544,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -78619,7 +78619,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -78776,7 +78776,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -78844,7 +78844,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -78958,7 +78958,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -79029,7 +79029,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -79133,7 +79133,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -79252,7 +79252,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -79321,7 +79321,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -79393,7 +79393,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -79567,7 +79567,7 @@ { "key": "alternative-response-with-extra-repository-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -79901,7 +79901,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -79974,7 +79974,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -80039,7 +80039,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -80134,7 +80134,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -80291,7 +80291,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -80417,7 +80417,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like apples?" @@ -80542,7 +80542,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -80676,7 +80676,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like pineapples?" @@ -80802,7 +80802,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -80891,7 +80891,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -81007,7 +81007,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like apples?" @@ -81122,7 +81122,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -81246,7 +81246,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like pineapples?" @@ -81362,7 +81362,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -81461,7 +81461,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81601,7 +81601,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Our first team post", @@ -81722,7 +81722,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81860,7 +81860,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Welcome to our first team post" @@ -81981,7 +81981,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -82060,7 +82060,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -82190,7 +82190,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Our first team post", @@ -82301,7 +82301,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -82429,7 +82429,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Welcome to our first team post" @@ -82540,7 +82540,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -82630,7 +82630,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -82717,7 +82717,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -82808,7 +82808,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -82887,7 +82887,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -82971,7 +82971,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -83052,7 +83052,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -83111,7 +83111,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -83178,7 +83178,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -83237,7 +83237,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -83318,7 +83318,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -83391,7 +83391,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -83434,7 +83434,7 @@ { "key": "response-with-public-and-private-profile-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -83491,7 +83491,7 @@ { "key": "response-with-public-profile-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -83664,7 +83664,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -83781,7 +83781,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -83850,7 +83850,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -83899,7 +83899,7 @@ { "key": "response-with-git-hub-plan-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -84013,7 +84013,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -84087,7 +84087,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -84163,7 +84163,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -84254,7 +84254,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -84325,7 +84325,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -84403,7 +84403,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -84489,7 +84489,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -84566,7 +84566,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -84627,7 +84627,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -84688,7 +84688,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -84767,7 +84767,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -84853,7 +84853,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -84930,7 +84930,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME", @@ -84991,7 +84991,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -85088,7 +85088,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -85186,7 +85186,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gpg_key_id": "GPG_KEY_ID" @@ -85283,7 +85283,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gpg_key_id": "GPG_KEY_ID" @@ -85366,7 +85366,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -85460,7 +85460,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -85553,7 +85553,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -85625,7 +85625,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_id": "KEY_ID" @@ -85696,7 +85696,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_id": "KEY_ID" @@ -85775,7 +85775,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -85849,7 +85849,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -85979,7 +85979,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -86062,7 +86062,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -86360,7 +86360,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -86475,7 +86475,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -86799,7 +86799,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "active": true, @@ -86904,7 +86904,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -86973,7 +86973,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -87042,7 +87042,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", diff --git a/lib/rest/static/decorated/ghes-3.2.json b/lib/rest/static/decorated/ghes-3.2.json index 97eb89c836..4fabf529a7 100644 --- a/lib/rest/static/decorated/ghes-3.2.json +++ b/lib/rest/static/decorated/ghes-3.2.json @@ -52,7 +52,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -146,7 +146,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -224,7 +224,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -298,7 +298,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -382,7 +382,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -461,7 +461,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -542,7 +542,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled_organizations": "all", @@ -609,7 +609,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -689,7 +689,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_organization_ids": [ @@ -749,7 +749,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -804,7 +804,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -850,7 +850,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -927,7 +927,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -980,7 +980,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1061,7 +1061,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled_repositories": "all", @@ -1128,7 +1128,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1317,7 +1317,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -1377,7 +1377,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -1432,7 +1432,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -1478,7 +1478,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1555,7 +1555,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -1617,7 +1617,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -1703,7 +1703,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled": true, @@ -1762,7 +1762,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -1849,7 +1849,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -1923,7 +1923,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1993,7 +1993,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -2052,7 +2052,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2162,7 +2162,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2187,7 +2187,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2255,7 +2255,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2328,7 +2328,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2472,7 +2472,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -2541,7 +2541,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2610,7 +2610,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2688,7 +2688,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2759,7 +2759,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2828,7 +2828,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2920,7 +2920,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2941,7 +2941,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3014,7 +3014,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -3088,7 +3088,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3159,7 +3159,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3228,7 +3228,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3320,7 +3320,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3341,7 +3341,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3414,7 +3414,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3481,7 +3481,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -3617,7 +3617,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -3693,7 +3693,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3793,7 +3793,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -3862,7 +3862,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3935,7 +3935,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4025,7 +4025,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_organization_ids": [ @@ -4095,7 +4095,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4160,7 +4160,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4234,7 +4234,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4363,7 +4363,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "runners": [ @@ -4433,7 +4433,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4498,7 +4498,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4563,7 +4563,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -4704,7 +4704,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -4781,7 +4781,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -4882,7 +4882,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -4952,7 +4952,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5025,7 +5025,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5342,7 +5342,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -5412,7 +5412,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5477,7 +5477,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5551,7 +5551,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5680,7 +5680,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "runners": [ @@ -5750,7 +5750,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5815,7 +5815,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5882,7 +5882,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -5986,7 +5986,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -6074,7 +6074,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -6124,7 +6124,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -6183,7 +6183,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -6268,7 +6268,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -6332,7 +6332,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -6436,7 +6436,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -6524,7 +6524,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -6574,7 +6574,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -6633,7 +6633,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -6718,7 +6718,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -6791,7 +6791,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -6905,7 +6905,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7003,7 +7003,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7063,7 +7063,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7132,7 +7132,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7227,7 +7227,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7294,7 +7294,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7457,7 +7457,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7554,7 +7554,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7813,7 +7813,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8069,7 +8069,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8310,7 +8310,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8375,7 +8375,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8478,7 +8478,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8547,7 +8547,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8612,7 +8612,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8685,7 +8685,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8856,7 +8856,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8962,7 +8962,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9123,7 +9123,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9381,7 +9381,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9482,7 +9482,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9567,7 +9567,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9663,7 +9663,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "topic-branch", @@ -9742,7 +9742,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9802,7 +9802,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -9883,7 +9883,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9963,7 +9963,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -10035,7 +10035,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10099,7 +10099,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -10171,7 +10171,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME", @@ -10235,7 +10235,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -10298,7 +10298,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -10361,7 +10361,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -10398,7 +10398,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -10536,7 +10536,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -10692,7 +10692,7 @@ "key": "202", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -10704,7 +10704,7 @@ "key": "205", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -10762,7 +10762,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -10904,7 +10904,7 @@ { "key": "205", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -10957,7 +10957,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -11035,7 +11035,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -11101,7 +11101,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -11225,7 +11225,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11379,7 +11379,7 @@ "key": "202", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11395,7 +11395,7 @@ "key": "205", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11474,7 +11474,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11512,7 +11512,7 @@ { "key": "alternative-response-with-star-creation-timestamps", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11625,7 +11625,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -11762,7 +11762,7 @@ { "key": "alternative-response-with-star-creation-timestamps", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -11954,7 +11954,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12025,7 +12025,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12096,7 +12096,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12204,7 +12204,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -12404,7 +12404,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12482,7 +12482,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12574,7 +12574,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12638,7 +12638,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12693,7 +12693,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -12872,7 +12872,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -13017,7 +13017,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -13101,7 +13101,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "code": "CODE" @@ -13228,7 +13228,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -13328,7 +13328,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -13433,7 +13433,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -14351,7 +14351,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "respoitory": "Hello-World", @@ -14559,7 +14559,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -14613,7 +14613,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -14662,7 +14662,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "app_slug": "APP_SLUG" @@ -14757,7 +14757,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -14862,7 +14862,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -14967,7 +14967,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -15075,7 +15075,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -15245,7 +15245,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -15333,7 +15333,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -15421,7 +15421,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -15604,7 +15604,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -15806,7 +15806,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1, @@ -15878,7 +15878,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1, @@ -15954,7 +15954,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -16020,7 +16020,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -16082,7 +16082,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -16197,7 +16197,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -16308,7 +16308,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -17265,7 +17265,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a", @@ -17421,7 +17421,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -17528,7 +17528,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -17631,7 +17631,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -17669,7 +17669,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -17766,7 +17766,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content_type": "json", @@ -17830,7 +17830,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -17909,7 +17909,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "delivery_id": "DELIVERY_ID" @@ -18006,7 +18006,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "delivery_id": "DELIVERY_ID" @@ -18099,7 +18099,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18189,7 +18189,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18274,7 +18274,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_name": "my_renamed_branch" @@ -18475,7 +18475,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "base": "master", @@ -18663,7 +18663,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19523,7 +19523,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "required_status_checks": { @@ -19649,7 +19649,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19719,7 +19719,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19790,7 +19790,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19861,7 +19861,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19931,7 +19931,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20145,7 +20145,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "dismissal_restrictions": { @@ -20288,7 +20288,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20358,7 +20358,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20435,7 +20435,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20512,7 +20512,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20584,7 +20584,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20687,7 +20687,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "strict": true, @@ -20776,7 +20776,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20842,7 +20842,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20930,7 +20930,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21027,7 +21027,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21119,7 +21119,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21197,7 +21197,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21349,7 +21349,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21415,7 +21415,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21543,7 +21543,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21671,7 +21671,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21799,7 +21799,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21913,7 +21913,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22014,7 +22014,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22115,7 +22115,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22216,7 +22216,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22303,7 +22303,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22410,7 +22410,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22517,7 +22517,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22624,7 +22624,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23663,7 +23663,7 @@ "key": "example-of-in-progress-conclusion", "request": { "contentType": "application/json", - "description": "

Example of an in_progress conclusion

", + "description": "Example of an in_progress conclusion", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -23782,7 +23782,7 @@ "key": "example-of-completed-conclusion", "request": { "contentType": "application/json", - "description": "

Example of a completed conclusion

", + "description": "Example of a completed conclusion", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -23983,7 +23983,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25080,7 +25080,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -25292,7 +25292,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25427,7 +25427,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25653,7 +25653,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25818,7 +25818,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3" @@ -26138,7 +26138,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3" @@ -26567,7 +26567,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "auto_trigger_checks": [ @@ -26879,7 +26879,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27245,7 +27245,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27348,7 +27348,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27658,7 +27658,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27840,7 +27840,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28020,7 +28020,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "dismissed", @@ -28200,7 +28200,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28376,7 +28376,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28497,7 +28497,7 @@ { "key": "response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28608,7 +28608,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28749,7 +28749,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28838,7 +28838,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28896,7 +28896,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -28957,7 +28957,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key": "KEY" @@ -29065,7 +29065,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29161,7 +29161,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29260,7 +29260,7 @@ "key": "response-when-a-new-invitation-is-created", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29455,7 +29455,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29520,7 +29520,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29624,7 +29624,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29826,7 +29826,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30010,7 +30010,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30066,7 +30066,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -30244,7 +30244,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "invitation_id": "INVITATION_ID" @@ -30305,7 +30305,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "invitation_id": "INVITATION_ID" @@ -30444,7 +30444,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30606,7 +30606,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30707,7 +30707,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31314,7 +31314,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31505,7 +31505,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31851,7 +31851,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31954,7 +31954,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32071,7 +32071,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Nice change" @@ -32178,7 +32178,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32266,7 +32266,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32409,7 +32409,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff", @@ -32544,7 +32544,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32735,7 +32735,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32885,7 +32885,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "success", @@ -33001,7 +33001,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33097,7 +33097,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "octocat@octomac", @@ -33180,7 +33180,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33259,7 +33259,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33381,7 +33381,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33582,7 +33582,7 @@ "key": "simple-example", "request": { "contentType": "application/json", - "description": "

Simple example

", + "description": "Simple example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "topic-branch", @@ -33704,7 +33704,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33815,7 +33815,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33899,7 +33899,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34042,7 +34042,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34338,7 +34338,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34481,7 +34481,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34566,7 +34566,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34759,7 +34759,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "environment": "production", @@ -34882,7 +34882,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34966,7 +34966,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35007,7 +35007,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35096,7 +35096,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35128,7 +35128,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35160,7 +35160,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35192,7 +35192,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35224,7 +35224,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35256,7 +35256,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35288,7 +35288,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35320,7 +35320,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35352,7 +35352,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35384,7 +35384,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35418,7 +35418,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35485,7 +35485,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35522,7 +35522,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35575,7 +35575,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35770,7 +35770,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -35857,7 +35857,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -36053,7 +36053,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "events": [ @@ -36127,7 +36127,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -36174,7 +36174,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -36234,7 +36234,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ldap_dn": "cn=Enterprise Ops,ou=teams,dc=github,dc=com" @@ -36300,7 +36300,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -36360,7 +36360,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ldap_dn": "uid=asdf,ou=users,dc=github,dc=com" @@ -36456,7 +36456,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -36497,7 +36497,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -36540,7 +36540,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -36598,7 +36598,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -36630,7 +36630,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -36696,7 +36696,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "maintenance": "{\"enabled\":true, \"when\":\"now\"}" @@ -36754,7 +36754,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -36938,7 +36938,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "settings": "{ \"enterprise\": { \"public_pages\": true }}" @@ -36973,7 +36973,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37031,7 +37031,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "authorized_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCssTL/Vtu/ODLTj0VtZoRAbvf7uiv5997GyDq0MoAZUjb5jmA5wYe2/wF6sFuhiZTnZoF1ZtCHunPp0hM/GHrn6VySBhNncx14YO8FPt1CIhEeRMSEjUK9cY3xAbS365oXY8vnUHJsS9+1tr/2bx/+4NJfcUt/Ezf1OR/0LStQXw==" @@ -37092,7 +37092,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "authorized_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCssTL/Vtu/ODLTj0VtZoRAbvf7uiv5997GyDq0MoAZUjb5jmA5wYe2/wF6sFuhiZTnZoF1ZtCHunPp0hM/GHrn6VySBhNncx14YO8FPt1CIhEeRMSEjUK9cY3xAbS365oXY8vnUHJsS9+1tr/2bx/+4NJfcUt/Ezf1OR/0LStQXw==" @@ -37171,7 +37171,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37214,7 +37214,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37305,7 +37305,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -37371,7 +37371,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -37456,7 +37456,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enforcement": "enabled", @@ -37525,7 +37525,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -37602,7 +37602,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "github", @@ -37675,7 +37675,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "the-new-octocats" @@ -37768,7 +37768,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37857,7 +37857,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "DevTools Hook Env", @@ -37922,7 +37922,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -38006,7 +38006,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -38074,7 +38074,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -38125,7 +38125,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -38183,7 +38183,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -38277,7 +38277,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38403,7 +38403,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Check Commits", @@ -38489,7 +38489,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_hook_id": "PRE_RECEIVE_HOOK_ID" @@ -38626,7 +38626,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Check Commits", @@ -38710,7 +38710,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_hook_id": "PRE_RECEIVE_HOOK_ID" @@ -38815,7 +38815,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -38890,7 +38890,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -38980,7 +38980,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enforcement": "enabled" @@ -39057,7 +39057,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -39162,7 +39162,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -39231,7 +39231,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_ids": "KEY_IDS" @@ -39285,7 +39285,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -39362,7 +39362,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "token_id": "TOKEN_ID" @@ -39417,7 +39417,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "monalisa", @@ -39495,7 +39495,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "thenewmonalisa" @@ -39548,7 +39548,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -39607,7 +39607,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -39644,7 +39644,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -39715,7 +39715,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -39760,7 +39760,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -39805,7 +39805,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -39861,7 +39861,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -39917,7 +39917,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -39984,7 +39984,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -40145,7 +40145,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -40238,7 +40238,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -40361,7 +40361,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -40465,7 +40465,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -40604,7 +40604,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -40673,7 +40673,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -40748,7 +40748,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -40856,7 +40856,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -40962,7 +40962,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41071,7 +41071,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41128,7 +41128,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41185,7 +41185,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41251,7 +41251,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -41353,7 +41353,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -41473,7 +41473,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41577,7 +41577,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41673,7 +41673,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -41785,7 +41785,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -41874,7 +41874,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -41966,7 +41966,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "Content of the blob", @@ -42055,7 +42055,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42329,7 +42329,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -42450,7 +42450,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42575,7 +42575,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42664,7 +42664,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42766,7 +42766,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "refs/heads/featureA", @@ -42871,7 +42871,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "sha": "aa218f56b14c9653891f9e74264a383fa43fefbd", @@ -42956,7 +42956,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43140,7 +43140,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag": "v0.0.1", @@ -43243,7 +43243,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43482,7 +43482,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "base_tree": "9fb037999f264ba9a7fc6274d15fa3ae2ab98312", @@ -43595,7 +43595,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43642,7 +43642,7 @@ { "key": "response-recursively-retrieving-a-tree", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43706,7 +43706,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -43762,7 +43762,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "name": "NAME" @@ -43946,7 +43946,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -44365,7 +44365,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -44806,7 +44806,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45147,7 +45147,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Found a bug", @@ -45400,7 +45400,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45773,7 +45773,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Found a bug", @@ -46049,7 +46049,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46130,7 +46130,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46275,7 +46275,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -46621,7 +46621,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46712,7 +46712,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46795,7 +46795,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "assignees": [ @@ -47038,7 +47038,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "assignees": [ @@ -47315,7 +47315,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47423,7 +47423,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47538,7 +47538,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Me too" @@ -47642,7 +47642,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47735,7 +47735,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47855,7 +47855,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Me too" @@ -47982,7 +47982,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48221,7 +48221,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48525,7 +48525,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48653,7 +48653,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48758,7 +48758,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -48873,7 +48873,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -48973,7 +48973,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49051,7 +49051,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49146,7 +49146,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49255,7 +49255,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "bug", @@ -49342,7 +49342,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49450,7 +49450,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_name": "bug :bug:", @@ -49530,7 +49530,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49613,7 +49613,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49753,7 +49753,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49896,7 +49896,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "v1.0", @@ -50012,7 +50012,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -50163,7 +50163,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "v1.0", @@ -50272,7 +50272,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -50361,7 +50361,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -50440,7 +50440,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -50538,7 +50538,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "license": "LICENSE" @@ -50630,7 +50630,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -50733,7 +50733,7 @@ "key": "200", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -50797,7 +50797,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -50829,7 +50829,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -50886,7 +50886,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -50918,7 +50918,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -50974,7 +50974,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51045,7 +51045,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51124,7 +51124,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51221,7 +51221,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51391,7 +51391,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51480,7 +51480,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -51555,7 +51555,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "grant_id": "GRANT_ID" @@ -51627,7 +51627,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "grant_id": "GRANT_ID" @@ -51702,7 +51702,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -51856,7 +51856,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -52006,7 +52006,7 @@ "key": "response-if-returning-an-existing-token", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766" @@ -52043,7 +52043,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766" @@ -52196,7 +52196,7 @@ "key": "response-if-returning-an-existing-token", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -52234,7 +52234,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -52310,7 +52310,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -52464,7 +52464,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -52535,7 +52535,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -52605,7 +52605,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -52668,7 +52668,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -52943,7 +52943,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "billing_email": "mona@github.com", @@ -53081,7 +53081,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -53192,7 +53192,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -53281,7 +53281,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -53393,7 +53393,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -53478,7 +53478,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -53541,7 +53541,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -53600,7 +53600,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -53720,7 +53720,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -53824,7 +53824,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -53896,7 +53896,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -53973,7 +53973,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54032,7 +54032,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54091,7 +54091,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54159,7 +54159,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -54300,7 +54300,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -54408,7 +54408,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "active" @@ -54543,7 +54543,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -54620,7 +54620,7 @@ { "key": "202", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54635,7 +54635,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54702,7 +54702,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54772,7 +54772,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -55057,7 +55057,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -55151,7 +55151,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -55402,7 +55402,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "active": true, @@ -55490,7 +55490,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -55549,7 +55549,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -55669,7 +55669,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -55749,7 +55749,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -55850,7 +55850,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -55967,7 +55967,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -56031,7 +56031,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -56093,7 +56093,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -56244,7 +56244,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "source": { @@ -56409,7 +56409,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "cname": "octocatblog.com", @@ -56479,7 +56479,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -56562,7 +56562,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -56651,7 +56651,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -56711,7 +56711,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -56807,7 +56807,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -56923,7 +56923,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -57031,7 +57031,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Organization Roadmap", @@ -57137,7 +57137,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -57296,7 +57296,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -57402,7 +57402,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -57511,7 +57511,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -57645,7 +57645,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Projects Documentation", @@ -57771,7 +57771,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -57903,7 +57903,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -57994,7 +57994,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -58119,7 +58119,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -58219,7 +58219,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -58309,7 +58309,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -58409,7 +58409,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -58544,7 +58544,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -58679,7 +58679,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -58798,7 +58798,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -58875,7 +58875,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -58952,7 +58952,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -59046,7 +59046,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -59134,7 +59134,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -59204,7 +59204,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -59278,7 +59278,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -59359,7 +59359,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -59445,7 +59445,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -59611,7 +59611,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60262,7 +60262,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Amazing new feature", @@ -60874,7 +60874,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61536,7 +61536,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "new title", @@ -62167,7 +62167,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -62331,7 +62331,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -62419,7 +62419,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -62531,7 +62531,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -62633,7 +62633,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "expected_head_sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e" @@ -62765,7 +62765,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -62891,7 +62891,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63031,7 +63031,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "I like this too!" @@ -63158,7 +63158,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63282,7 +63282,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63508,7 +63508,7 @@ "key": "example-for-a-multi-line-comment", "request": { "contentType": "application/json", - "description": "

Example for a multi-line comment

", + "description": "Example for a multi-line comment", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff!", @@ -63669,7 +63669,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff!" @@ -63819,7 +63819,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63951,7 +63951,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "reviewers": [ @@ -64619,7 +64619,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "reviewers": [ @@ -64718,7 +64718,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65027,7 +65027,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "commit_id": "ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091", @@ -65161,7 +65161,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65291,7 +65291,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "This is close to perfect! Please address the suggested inline change. And add more about this." @@ -65413,7 +65413,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65554,7 +65554,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65708,7 +65708,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65856,7 +65856,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65949,7 +65949,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -66108,7 +66108,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -66235,7 +66235,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -66283,7 +66283,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -66403,7 +66403,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -66509,7 +66509,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -66626,7 +66626,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -66673,7 +66673,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -66783,7 +66783,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -66833,7 +66833,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "reaction_id": "REACTION_ID" @@ -66951,7 +66951,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67072,7 +67072,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -67119,7 +67119,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -67237,7 +67237,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67342,7 +67342,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67463,7 +67463,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -67510,7 +67510,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -67624,7 +67624,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67729,7 +67729,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67854,7 +67854,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -67901,7 +67901,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -68015,7 +68015,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68120,7 +68120,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68241,7 +68241,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -68288,7 +68288,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -68402,7 +68402,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68505,7 +68505,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68628,7 +68628,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -68675,7 +68675,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -68789,7 +68789,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68894,7 +68894,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -69011,7 +69011,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -69136,7 +69136,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -69243,7 +69243,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -69353,7 +69353,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -69547,7 +69547,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -69690,7 +69690,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -69831,7 +69831,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -69976,7 +69976,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70177,7 +70177,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -70326,7 +70326,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70393,7 +70393,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70532,7 +70532,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "foo-1.0.0-osx.zip", @@ -70636,7 +70636,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70719,7 +70719,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70839,7 +70839,7 @@ "key": "default", "request": { "contentType": "*/*", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70993,7 +70993,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -71328,7 +71328,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Hello-World", @@ -71524,7 +71524,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -72047,7 +72047,7 @@ { "key": "response-with-scarlet-witch-preview-media-type", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73095,7 +73095,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Hello-World", @@ -73685,7 +73685,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73779,7 +73779,7 @@ { "key": "response-if-repository-contains-content", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73894,7 +73894,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "event_type": "on-demand-test", @@ -73960,7 +73960,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74038,7 +74038,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74124,7 +74124,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74214,7 +74214,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74302,7 +74302,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "names": [ @@ -74411,7 +74411,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_owner": "github", @@ -74749,7 +74749,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "owner": "octocat", @@ -74938,7 +74938,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -75160,7 +75160,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -75549,7 +75549,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -75802,7 +75802,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -75987,7 +75987,7 @@ { "key": "response-if-content-is-a-file", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -76022,7 +76022,7 @@ { "key": "response-if-content-is-a-directory", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -76073,7 +76073,7 @@ { "key": "response-if-content-is-a-symlink", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -76107,7 +76107,7 @@ { "key": "response-if-content-is-a-submodule", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -76403,7 +76403,7 @@ "key": "example-for-creating-a-file", "request": { "contentType": "application/json", - "description": "

Example for creating a file

", + "description": "Example for creating a file", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -76481,7 +76481,7 @@ "key": "example-for-updating-a-file", "request": { "contentType": "application/json", - "description": "

Example for updating a file

", + "description": "Example for updating a file", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "a new commit message", @@ -76764,7 +76764,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -76891,7 +76891,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -76992,7 +76992,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -77084,7 +77084,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -77149,7 +77149,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -77241,7 +77241,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -77428,7 +77428,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -78047,7 +78047,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -78233,7 +78233,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -78464,7 +78464,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -78677,7 +78677,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -78809,7 +78809,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -78994,7 +78994,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -79177,7 +79177,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -79321,7 +79321,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -79441,7 +79441,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -79565,7 +79565,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "resolved", @@ -79683,7 +79683,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -79838,7 +79838,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Justice League", @@ -79954,7 +79954,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -80121,7 +80121,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -80229,7 +80229,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -80302,7 +80302,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -80412,7 +80412,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -80541,7 +80541,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -80612,7 +80612,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -80686,7 +80686,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -80866,7 +80866,7 @@ { "key": "alternative-response-with-repository-permissions", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81216,7 +81216,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81291,7 +81291,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81366,7 +81366,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81441,7 +81441,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -81598,7 +81598,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -81666,7 +81666,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -81780,7 +81780,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -81851,7 +81851,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -81955,7 +81955,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -82074,7 +82074,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -82143,7 +82143,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -82215,7 +82215,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -82389,7 +82389,7 @@ { "key": "alternative-response-with-extra-repository-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -82726,7 +82726,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -82799,7 +82799,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -82864,7 +82864,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -82959,7 +82959,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -83116,7 +83116,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -83242,7 +83242,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like apples?" @@ -83367,7 +83367,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -83501,7 +83501,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like pineapples?" @@ -83627,7 +83627,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -83716,7 +83716,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -83832,7 +83832,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like apples?" @@ -83947,7 +83947,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -84071,7 +84071,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like pineapples?" @@ -84187,7 +84187,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -84286,7 +84286,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -84426,7 +84426,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Our first team post", @@ -84547,7 +84547,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -84685,7 +84685,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Welcome to our first team post" @@ -84806,7 +84806,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -84885,7 +84885,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -85015,7 +85015,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Our first team post", @@ -85126,7 +85126,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -85254,7 +85254,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Welcome to our first team post" @@ -85365,7 +85365,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -85455,7 +85455,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -85542,7 +85542,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -85633,7 +85633,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -85712,7 +85712,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -85796,7 +85796,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -85877,7 +85877,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -85936,7 +85936,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -86003,7 +86003,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -86062,7 +86062,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -86143,7 +86143,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -86216,7 +86216,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -86259,7 +86259,7 @@ { "key": "response-with-public-and-private-profile-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -86316,7 +86316,7 @@ { "key": "response-with-public-profile-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -86489,7 +86489,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -86606,7 +86606,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -86675,7 +86675,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -86724,7 +86724,7 @@ { "key": "response-with-git-hub-plan-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -86838,7 +86838,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -86912,7 +86912,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -86988,7 +86988,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -87079,7 +87079,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -87150,7 +87150,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -87228,7 +87228,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -87314,7 +87314,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -87391,7 +87391,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -87452,7 +87452,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -87513,7 +87513,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -87592,7 +87592,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -87678,7 +87678,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -87755,7 +87755,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME", @@ -87816,7 +87816,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -87913,7 +87913,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -88011,7 +88011,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gpg_key_id": "GPG_KEY_ID" @@ -88108,7 +88108,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gpg_key_id": "GPG_KEY_ID" @@ -88191,7 +88191,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -88285,7 +88285,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -88378,7 +88378,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -88450,7 +88450,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_id": "KEY_ID" @@ -88521,7 +88521,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_id": "KEY_ID" @@ -88600,7 +88600,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -88674,7 +88674,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -88804,7 +88804,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -88896,7 +88896,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -89007,7 +89007,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -89134,7 +89134,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -89219,7 +89219,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -89518,7 +89518,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -89634,7 +89634,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -89959,7 +89959,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "active": true, @@ -90065,7 +90065,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90134,7 +90134,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90203,7 +90203,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", diff --git a/lib/rest/static/decorated/ghes-3.3.json b/lib/rest/static/decorated/ghes-3.3.json index 6ed4abc299..dddda7f4a8 100644 --- a/lib/rest/static/decorated/ghes-3.3.json +++ b/lib/rest/static/decorated/ghes-3.3.json @@ -52,7 +52,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -146,7 +146,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -224,7 +224,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -298,7 +298,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -382,7 +382,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -461,7 +461,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -542,7 +542,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled_organizations": "all", @@ -609,7 +609,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -689,7 +689,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_organization_ids": [ @@ -749,7 +749,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -804,7 +804,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -850,7 +850,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -927,7 +927,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -980,7 +980,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1061,7 +1061,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled_repositories": "all", @@ -1128,7 +1128,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1317,7 +1317,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -1377,7 +1377,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -1432,7 +1432,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -1478,7 +1478,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1555,7 +1555,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -1617,7 +1617,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -1703,7 +1703,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled": true, @@ -1762,7 +1762,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -1849,7 +1849,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -1923,7 +1923,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1993,7 +1993,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -2052,7 +2052,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2162,7 +2162,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2187,7 +2187,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2255,7 +2255,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2328,7 +2328,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2472,7 +2472,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -2541,7 +2541,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2610,7 +2610,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2688,7 +2688,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2759,7 +2759,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2828,7 +2828,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2920,7 +2920,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2941,7 +2941,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3014,7 +3014,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -3088,7 +3088,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3159,7 +3159,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3228,7 +3228,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3320,7 +3320,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3341,7 +3341,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3414,7 +3414,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3481,7 +3481,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -3617,7 +3617,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -3693,7 +3693,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3793,7 +3793,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -3862,7 +3862,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3935,7 +3935,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4025,7 +4025,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_organization_ids": [ @@ -4095,7 +4095,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4160,7 +4160,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4234,7 +4234,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4363,7 +4363,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "runners": [ @@ -4433,7 +4433,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4498,7 +4498,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4563,7 +4563,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -4704,7 +4704,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -4781,7 +4781,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -4882,7 +4882,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -4952,7 +4952,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5025,7 +5025,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5342,7 +5342,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -5412,7 +5412,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5477,7 +5477,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5551,7 +5551,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5680,7 +5680,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "runners": [ @@ -5750,7 +5750,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5815,7 +5815,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5882,7 +5882,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -5986,7 +5986,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -6074,7 +6074,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -6124,7 +6124,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -6183,7 +6183,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -6268,7 +6268,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -6332,7 +6332,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -6436,7 +6436,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -6524,7 +6524,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -6574,7 +6574,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -6633,7 +6633,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -6718,7 +6718,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -6791,7 +6791,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -6905,7 +6905,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7003,7 +7003,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7063,7 +7063,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7132,7 +7132,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7227,7 +7227,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7294,7 +7294,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7466,7 +7466,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7563,7 +7563,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7822,7 +7822,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8078,7 +8078,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8319,7 +8319,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8384,7 +8384,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8487,7 +8487,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8556,7 +8556,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8621,7 +8621,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8694,7 +8694,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8865,7 +8865,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8971,7 +8971,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9132,7 +9132,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9390,7 +9390,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9491,7 +9491,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9576,7 +9576,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9672,7 +9672,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "topic-branch", @@ -9751,7 +9751,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9811,7 +9811,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -9892,7 +9892,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9972,7 +9972,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -10044,7 +10044,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10108,7 +10108,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -10180,7 +10180,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME", @@ -10244,7 +10244,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -10307,7 +10307,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -10370,7 +10370,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -10407,7 +10407,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -10545,7 +10545,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -10701,7 +10701,7 @@ "key": "202", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -10713,7 +10713,7 @@ "key": "205", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -10771,7 +10771,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -10913,7 +10913,7 @@ { "key": "205", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -10966,7 +10966,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -11044,7 +11044,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -11110,7 +11110,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -11234,7 +11234,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11388,7 +11388,7 @@ "key": "202", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11404,7 +11404,7 @@ "key": "205", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11483,7 +11483,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11521,7 +11521,7 @@ { "key": "alternative-response-with-star-creation-timestamps", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11634,7 +11634,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -11771,7 +11771,7 @@ { "key": "alternative-response-with-star-creation-timestamps", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -11963,7 +11963,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12034,7 +12034,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12105,7 +12105,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12213,7 +12213,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -12413,7 +12413,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12491,7 +12491,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12583,7 +12583,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12647,7 +12647,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12702,7 +12702,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -12881,7 +12881,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -13026,7 +13026,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -13110,7 +13110,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "code": "CODE" @@ -13237,7 +13237,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -13337,7 +13337,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -13442,7 +13442,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -14360,7 +14360,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "respoitory": "Hello-World", @@ -14568,7 +14568,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -14622,7 +14622,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -14671,7 +14671,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "app_slug": "APP_SLUG" @@ -14766,7 +14766,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -14871,7 +14871,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -14976,7 +14976,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -15084,7 +15084,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -15252,7 +15252,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -15340,7 +15340,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -15428,7 +15428,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -15611,7 +15611,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -15811,7 +15811,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1, @@ -15883,7 +15883,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1, @@ -15959,7 +15959,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -16025,7 +16025,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -16087,7 +16087,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -16202,7 +16202,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -16313,7 +16313,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -17270,7 +17270,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a", @@ -17426,7 +17426,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -17533,7 +17533,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -17636,7 +17636,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -17674,7 +17674,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -17771,7 +17771,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content_type": "json", @@ -17835,7 +17835,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -17914,7 +17914,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "delivery_id": "DELIVERY_ID" @@ -18011,7 +18011,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "delivery_id": "DELIVERY_ID" @@ -18104,7 +18104,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18194,7 +18194,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18279,7 +18279,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_name": "my_renamed_branch" @@ -18462,7 +18462,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "branch": "main" @@ -18563,7 +18563,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "base": "master", @@ -18751,7 +18751,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19609,7 +19609,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "required_status_checks": { @@ -19733,7 +19733,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19803,7 +19803,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19874,7 +19874,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19945,7 +19945,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20015,7 +20015,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20227,7 +20227,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "dismissal_restrictions": { @@ -20368,7 +20368,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20438,7 +20438,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20513,7 +20513,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20588,7 +20588,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20658,7 +20658,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20761,7 +20761,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "strict": true, @@ -20850,7 +20850,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20916,7 +20916,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21004,7 +21004,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21101,7 +21101,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21193,7 +21193,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21271,7 +21271,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21423,7 +21423,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21489,7 +21489,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21617,7 +21617,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21745,7 +21745,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21873,7 +21873,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21987,7 +21987,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22088,7 +22088,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22189,7 +22189,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22290,7 +22290,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22377,7 +22377,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22484,7 +22484,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22591,7 +22591,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22698,7 +22698,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23737,7 +23737,7 @@ "key": "example-of-in-progress-conclusion", "request": { "contentType": "application/json", - "description": "

Example of an in_progress conclusion

", + "description": "Example of an in_progress conclusion", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -23856,7 +23856,7 @@ "key": "example-of-completed-conclusion", "request": { "contentType": "application/json", - "description": "

Example of a completed conclusion

", + "description": "Example of a completed conclusion", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -24057,7 +24057,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25154,7 +25154,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -25366,7 +25366,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25446,7 +25446,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25580,7 +25580,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25806,7 +25806,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25971,7 +25971,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3" @@ -26291,7 +26291,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3" @@ -26720,7 +26720,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "auto_trigger_checks": [ @@ -27032,7 +27032,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27398,7 +27398,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27501,7 +27501,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27811,7 +27811,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27993,7 +27993,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28174,7 +28174,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "dismissed", @@ -28355,7 +28355,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28531,7 +28531,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28652,7 +28652,7 @@ { "key": "response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28763,7 +28763,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28904,7 +28904,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28993,7 +28993,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29051,7 +29051,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -29112,7 +29112,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key": "KEY" @@ -29220,7 +29220,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29316,7 +29316,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29415,7 +29415,7 @@ "key": "response-when-a-new-invitation-is-created", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29610,7 +29610,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29675,7 +29675,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29779,7 +29779,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29981,7 +29981,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30165,7 +30165,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30221,7 +30221,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -30399,7 +30399,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "invitation_id": "INVITATION_ID" @@ -30460,7 +30460,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "invitation_id": "INVITATION_ID" @@ -30599,7 +30599,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30761,7 +30761,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30860,7 +30860,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31465,7 +31465,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31656,7 +31656,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32002,7 +32002,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32103,7 +32103,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32218,7 +32218,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Nice change" @@ -32325,7 +32325,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32413,7 +32413,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32554,7 +32554,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff", @@ -32689,7 +32689,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32880,7 +32880,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33030,7 +33030,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "success", @@ -33146,7 +33146,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33242,7 +33242,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "octocat@octomac", @@ -33325,7 +33325,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33404,7 +33404,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33526,7 +33526,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33725,7 +33725,7 @@ "key": "simple-example", "request": { "contentType": "application/json", - "description": "

Simple example

", + "description": "Simple example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "topic-branch", @@ -33845,7 +33845,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33953,7 +33953,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34037,7 +34037,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34180,7 +34180,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34476,7 +34476,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34619,7 +34619,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34704,7 +34704,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34894,7 +34894,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "environment": "production", @@ -35014,7 +35014,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -35095,7 +35095,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35136,7 +35136,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35225,7 +35225,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35257,7 +35257,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35289,7 +35289,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35321,7 +35321,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35353,7 +35353,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35385,7 +35385,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35417,7 +35417,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35449,7 +35449,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35481,7 +35481,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35513,7 +35513,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35547,7 +35547,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35614,7 +35614,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35651,7 +35651,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35753,7 +35753,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -35945,7 +35945,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -36127,7 +36127,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -36202,7 +36202,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -36386,7 +36386,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "events": [ @@ -36458,7 +36458,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -36503,7 +36503,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -36561,7 +36561,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ldap_dn": "cn=Enterprise Ops,ou=teams,dc=github,dc=com" @@ -36625,7 +36625,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -36685,7 +36685,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ldap_dn": "uid=asdf,ou=users,dc=github,dc=com" @@ -36781,7 +36781,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -36822,7 +36822,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -36865,7 +36865,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -36923,7 +36923,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -36955,7 +36955,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37021,7 +37021,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "maintenance": "{\"enabled\":true, \"when\":\"now\"}" @@ -37079,7 +37079,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37263,7 +37263,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "settings": "{ \"enterprise\": { \"public_pages\": true }}" @@ -37298,7 +37298,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37356,7 +37356,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "authorized_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCssTL/Vtu/ODLTj0VtZoRAbvf7uiv5997GyDq0MoAZUjb5jmA5wYe2/wF6sFuhiZTnZoF1ZtCHunPp0hM/GHrn6VySBhNncx14YO8FPt1CIhEeRMSEjUK9cY3xAbS365oXY8vnUHJsS9+1tr/2bx/+4NJfcUt/Ezf1OR/0LStQXw==" @@ -37417,7 +37417,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "authorized_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCssTL/Vtu/ODLTj0VtZoRAbvf7uiv5997GyDq0MoAZUjb5jmA5wYe2/wF6sFuhiZTnZoF1ZtCHunPp0hM/GHrn6VySBhNncx14YO8FPt1CIhEeRMSEjUK9cY3xAbS365oXY8vnUHJsS9+1tr/2bx/+4NJfcUt/Ezf1OR/0LStQXw==" @@ -37496,7 +37496,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37539,7 +37539,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37630,7 +37630,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -37694,7 +37694,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -37777,7 +37777,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enforcement": "enabled", @@ -37844,7 +37844,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -37919,7 +37919,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "github", @@ -37992,7 +37992,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "the-new-octocats" @@ -38085,7 +38085,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38172,7 +38172,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "DevTools Hook Env", @@ -38235,7 +38235,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -38317,7 +38317,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -38383,7 +38383,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -38432,7 +38432,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -38488,7 +38488,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -38580,7 +38580,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38704,7 +38704,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Check Commits", @@ -38788,7 +38788,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_hook_id": "PRE_RECEIVE_HOOK_ID" @@ -38923,7 +38923,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Check Commits", @@ -39005,7 +39005,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_hook_id": "PRE_RECEIVE_HOOK_ID" @@ -39108,7 +39108,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -39181,7 +39181,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -39269,7 +39269,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enforcement": "enabled" @@ -39344,7 +39344,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -39447,7 +39447,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -39516,7 +39516,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_ids": "KEY_IDS" @@ -39570,7 +39570,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -39647,7 +39647,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "token_id": "TOKEN_ID" @@ -39702,7 +39702,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "monalisa", @@ -39780,7 +39780,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "thenewmonalisa" @@ -39833,7 +39833,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -39892,7 +39892,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -39929,7 +39929,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -40000,7 +40000,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -40045,7 +40045,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -40090,7 +40090,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -40146,7 +40146,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -40202,7 +40202,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -40269,7 +40269,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -40430,7 +40430,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -40523,7 +40523,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -40646,7 +40646,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -40750,7 +40750,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -40889,7 +40889,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -40958,7 +40958,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41033,7 +41033,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41141,7 +41141,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41247,7 +41247,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41356,7 +41356,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41413,7 +41413,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41470,7 +41470,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41536,7 +41536,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -41638,7 +41638,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -41758,7 +41758,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41862,7 +41862,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -41958,7 +41958,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -42070,7 +42070,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -42159,7 +42159,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -42251,7 +42251,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "Content of the blob", @@ -42340,7 +42340,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42614,7 +42614,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -42735,7 +42735,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42860,7 +42860,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42949,7 +42949,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43051,7 +43051,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "refs/heads/featureA", @@ -43156,7 +43156,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "sha": "aa218f56b14c9653891f9e74264a383fa43fefbd", @@ -43241,7 +43241,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43425,7 +43425,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag": "v0.0.1", @@ -43528,7 +43528,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43767,7 +43767,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "base_tree": "9fb037999f264ba9a7fc6274d15fa3ae2ab98312", @@ -43880,7 +43880,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43927,7 +43927,7 @@ { "key": "response-recursively-retrieving-a-tree", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43991,7 +43991,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -44047,7 +44047,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "name": "NAME" @@ -44231,7 +44231,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -44647,7 +44647,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -45085,7 +45085,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45423,7 +45423,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Found a bug", @@ -45676,7 +45676,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46047,7 +46047,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Found a bug", @@ -46323,7 +46323,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46404,7 +46404,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46549,7 +46549,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -46892,7 +46892,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46983,7 +46983,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47066,7 +47066,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "assignees": [ @@ -47309,7 +47309,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "assignees": [ @@ -47586,7 +47586,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47692,7 +47692,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47804,7 +47804,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Me too" @@ -47908,7 +47908,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48001,7 +48001,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48119,7 +48119,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Me too" @@ -48246,7 +48246,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48483,7 +48483,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48785,7 +48785,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48911,7 +48911,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49016,7 +49016,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -49131,7 +49131,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -49231,7 +49231,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49309,7 +49309,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49404,7 +49404,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49513,7 +49513,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "bug", @@ -49600,7 +49600,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49708,7 +49708,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_name": "bug :bug:", @@ -49788,7 +49788,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49871,7 +49871,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -50011,7 +50011,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -50154,7 +50154,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "v1.0", @@ -50270,7 +50270,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -50421,7 +50421,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "v1.0", @@ -50530,7 +50530,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -50619,7 +50619,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -50695,7 +50695,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -50793,7 +50793,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "license": "LICENSE" @@ -50885,7 +50885,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -50988,7 +50988,7 @@ "key": "200", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -51052,7 +51052,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -51084,7 +51084,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -51141,7 +51141,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -51173,7 +51173,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -51229,7 +51229,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51300,7 +51300,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51379,7 +51379,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51476,7 +51476,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51646,7 +51646,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51735,7 +51735,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -51810,7 +51810,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "grant_id": "GRANT_ID" @@ -51882,7 +51882,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "grant_id": "GRANT_ID" @@ -51957,7 +51957,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -52111,7 +52111,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -52261,7 +52261,7 @@ "key": "response-if-returning-an-existing-token", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766" @@ -52298,7 +52298,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766" @@ -52451,7 +52451,7 @@ "key": "response-if-returning-an-existing-token", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -52489,7 +52489,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -52565,7 +52565,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -52719,7 +52719,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -52790,7 +52790,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -52860,7 +52860,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -52923,7 +52923,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -53196,7 +53196,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "billing_email": "mona@github.com", @@ -53372,7 +53372,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -53571,7 +53571,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -53682,7 +53682,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -53771,7 +53771,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -53883,7 +53883,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -53968,7 +53968,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54031,7 +54031,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54090,7 +54090,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54210,7 +54210,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54314,7 +54314,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54386,7 +54386,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -54463,7 +54463,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54522,7 +54522,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54581,7 +54581,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -54649,7 +54649,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -54790,7 +54790,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -54898,7 +54898,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "active" @@ -55033,7 +55033,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -55110,7 +55110,7 @@ { "key": "202", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -55125,7 +55125,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -55192,7 +55192,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -55262,7 +55262,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -55547,7 +55547,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -55641,7 +55641,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -55892,7 +55892,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "active": true, @@ -55980,7 +55980,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -56039,7 +56039,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -56159,7 +56159,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -56239,7 +56239,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -56340,7 +56340,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -56457,7 +56457,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -56521,7 +56521,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -56583,7 +56583,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -56734,7 +56734,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "source": { @@ -56897,7 +56897,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "cname": "octocatblog.com", @@ -56967,7 +56967,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -57048,7 +57048,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -57137,7 +57137,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -57197,7 +57197,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -57293,7 +57293,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -57409,7 +57409,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -57515,7 +57515,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Organization Roadmap", @@ -57619,7 +57619,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -57776,7 +57776,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -57880,7 +57880,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -57987,7 +57987,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -58119,7 +58119,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Projects Documentation", @@ -58243,7 +58243,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -58369,7 +58369,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -58458,7 +58458,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -58581,7 +58581,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -58679,7 +58679,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -58767,7 +58767,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -58865,7 +58865,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -58998,7 +58998,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -59131,7 +59131,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -59248,7 +59248,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -59323,7 +59323,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -59398,7 +59398,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -59490,7 +59490,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -59576,7 +59576,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -59644,7 +59644,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -59716,7 +59716,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -59795,7 +59795,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -59879,7 +59879,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -60043,7 +60043,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60694,7 +60694,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Amazing new feature", @@ -61306,7 +61306,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61968,7 +61968,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "new title", @@ -62599,7 +62599,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -62763,7 +62763,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -62851,7 +62851,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -62963,7 +62963,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63065,7 +63065,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "expected_head_sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e" @@ -63195,7 +63195,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63318,7 +63318,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63455,7 +63455,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "I like this too!" @@ -63580,7 +63580,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63704,7 +63704,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63927,7 +63927,7 @@ "key": "example-for-a-multi-line-comment", "request": { "contentType": "application/json", - "description": "

Example for a multi-line comment

", + "description": "Example for a multi-line comment", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff!", @@ -64086,7 +64086,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff!" @@ -64236,7 +64236,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -64368,7 +64368,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "reviewers": [ @@ -65036,7 +65036,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "reviewers": [ @@ -65135,7 +65135,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65444,7 +65444,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "commit_id": "ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091", @@ -65578,7 +65578,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65708,7 +65708,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "This is close to perfect! Please address the suggested inline change. And add more about this." @@ -65830,7 +65830,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65971,7 +65971,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -66125,7 +66125,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -66273,7 +66273,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -66366,7 +66366,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -66525,7 +66525,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -66650,7 +66650,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -66698,7 +66698,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -66816,7 +66816,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -66920,7 +66920,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -67035,7 +67035,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -67082,7 +67082,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -67190,7 +67190,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -67238,7 +67238,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "reaction_id": "REACTION_ID" @@ -67354,7 +67354,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67473,7 +67473,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -67520,7 +67520,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -67632,7 +67632,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67735,7 +67735,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67854,7 +67854,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -67901,7 +67901,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -68013,7 +68013,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68116,7 +68116,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68239,7 +68239,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -68286,7 +68286,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -68398,7 +68398,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68501,7 +68501,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68620,7 +68620,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -68667,7 +68667,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -68779,7 +68779,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68880,7 +68880,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68997,7 +68997,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -69044,7 +69044,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -69156,7 +69156,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -69259,7 +69259,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -69374,7 +69374,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -69497,7 +69497,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -69602,7 +69602,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -69710,7 +69710,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -69914,7 +69914,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -70096,7 +70096,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -70166,7 +70166,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70307,7 +70307,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70452,7 +70452,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70653,7 +70653,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -70802,7 +70802,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70869,7 +70869,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71008,7 +71008,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "foo-1.0.0-osx.zip", @@ -71112,7 +71112,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71195,7 +71195,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71315,7 +71315,7 @@ "key": "default", "request": { "contentType": "*/*", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71469,7 +71469,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -71801,7 +71801,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Hello-World", @@ -71997,7 +71997,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73036,7 +73036,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Hello-World", @@ -73626,7 +73626,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73720,7 +73720,7 @@ { "key": "response-if-repository-contains-content", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73835,7 +73835,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "event_type": "on-demand-test", @@ -73901,7 +73901,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73979,7 +73979,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74065,7 +74065,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74155,7 +74155,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74237,7 +74237,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "names": [ @@ -74340,7 +74340,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_owner": "github", @@ -74678,7 +74678,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "owner": "octocat", @@ -74867,7 +74867,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -75089,7 +75089,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -75478,7 +75478,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -75731,7 +75731,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -75904,7 +75904,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -75987,7 +75987,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "key_prefix": "TICKET-", @@ -76065,7 +76065,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -76140,7 +76140,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -76221,7 +76221,7 @@ { "key": "response-if-content-is-a-file", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -76256,7 +76256,7 @@ { "key": "response-if-content-is-a-directory", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -76307,7 +76307,7 @@ { "key": "response-if-content-is-a-symlink", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -76341,7 +76341,7 @@ { "key": "response-if-content-is-a-submodule", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -76637,7 +76637,7 @@ "key": "example-for-creating-a-file", "request": { "contentType": "application/json", - "description": "

Example for creating a file

", + "description": "Example for creating a file", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -76715,7 +76715,7 @@ "key": "example-for-updating-a-file", "request": { "contentType": "application/json", - "description": "

Example for updating a file

", + "description": "Example for updating a file", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "a new commit message", @@ -76998,7 +76998,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -77125,7 +77125,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -77226,7 +77226,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -77318,7 +77318,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -77383,7 +77383,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -77475,7 +77475,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -77662,7 +77662,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -78245,7 +78245,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -78304,7 +78304,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -78397,7 +78397,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -78583,7 +78583,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -78812,7 +78812,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -79025,7 +79025,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -79157,7 +79157,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -79340,7 +79340,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -79517,7 +79517,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -79652,7 +79652,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -80259,7 +80259,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -80379,7 +80379,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -80503,7 +80503,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "resolved", @@ -80637,7 +80637,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -80759,7 +80759,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -80914,7 +80914,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Justice League", @@ -81030,7 +81030,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81197,7 +81197,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -81305,7 +81305,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81378,7 +81378,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81486,7 +81486,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81613,7 +81613,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81682,7 +81682,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81756,7 +81756,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81936,7 +81936,7 @@ { "key": "alternative-response-with-repository-permissions", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -82286,7 +82286,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -82361,7 +82361,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -82436,7 +82436,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -82511,7 +82511,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -82668,7 +82668,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -82736,7 +82736,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -82850,7 +82850,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -82921,7 +82921,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -83023,7 +83023,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -83140,7 +83140,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -83207,7 +83207,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -83279,7 +83279,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -83453,7 +83453,7 @@ { "key": "alternative-response-with-extra-repository-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -83790,7 +83790,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -83863,7 +83863,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -83928,7 +83928,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -84023,7 +84023,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -84180,7 +84180,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -84304,7 +84304,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like apples?" @@ -84427,7 +84427,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -84559,7 +84559,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like pineapples?" @@ -84683,7 +84683,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -84772,7 +84772,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -84886,7 +84886,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like apples?" @@ -84999,7 +84999,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -85121,7 +85121,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like pineapples?" @@ -85235,7 +85235,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -85334,7 +85334,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -85472,7 +85472,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Our first team post", @@ -85591,7 +85591,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -85727,7 +85727,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Welcome to our first team post" @@ -85846,7 +85846,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -85925,7 +85925,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -86053,7 +86053,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Our first team post", @@ -86162,7 +86162,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -86288,7 +86288,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Welcome to our first team post" @@ -86397,7 +86397,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -86487,7 +86487,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -86574,7 +86574,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -86665,7 +86665,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -86744,7 +86744,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -86828,7 +86828,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -86909,7 +86909,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -86968,7 +86968,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -87035,7 +87035,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -87094,7 +87094,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -87175,7 +87175,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -87248,7 +87248,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -87291,7 +87291,7 @@ { "key": "response-with-public-and-private-profile-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -87348,7 +87348,7 @@ { "key": "response-with-public-profile-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -87521,7 +87521,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -87638,7 +87638,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -87707,7 +87707,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -87756,7 +87756,7 @@ { "key": "response-with-git-hub-plan-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -87870,7 +87870,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -87944,7 +87944,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -88020,7 +88020,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -88111,7 +88111,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -88182,7 +88182,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -88260,7 +88260,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -88346,7 +88346,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -88423,7 +88423,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -88484,7 +88484,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -88545,7 +88545,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -88624,7 +88624,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -88710,7 +88710,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -88787,7 +88787,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME", @@ -88848,7 +88848,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -88945,7 +88945,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -89043,7 +89043,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gpg_key_id": "GPG_KEY_ID" @@ -89140,7 +89140,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gpg_key_id": "GPG_KEY_ID" @@ -89223,7 +89223,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -89317,7 +89317,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -89410,7 +89410,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -89482,7 +89482,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_id": "KEY_ID" @@ -89553,7 +89553,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_id": "KEY_ID" @@ -89632,7 +89632,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -89706,7 +89706,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -89836,7 +89836,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -89928,7 +89928,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90039,7 +90039,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90166,7 +90166,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90251,7 +90251,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90550,7 +90550,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -90666,7 +90666,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -90991,7 +90991,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "active": true, @@ -91097,7 +91097,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -91166,7 +91166,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -91235,7 +91235,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", diff --git a/lib/rest/static/decorated/ghes-3.4.json b/lib/rest/static/decorated/ghes-3.4.json index 3b28d7e3e6..09d7e87c99 100644 --- a/lib/rest/static/decorated/ghes-3.4.json +++ b/lib/rest/static/decorated/ghes-3.4.json @@ -52,7 +52,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -146,7 +146,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -224,7 +224,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -298,7 +298,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -382,7 +382,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -461,7 +461,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -542,7 +542,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled_organizations": "all", @@ -609,7 +609,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -689,7 +689,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_organization_ids": [ @@ -749,7 +749,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -804,7 +804,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -850,7 +850,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -927,7 +927,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -980,7 +980,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1061,7 +1061,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled_repositories": "all", @@ -1128,7 +1128,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1317,7 +1317,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -1377,7 +1377,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -1432,7 +1432,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -1478,7 +1478,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1555,7 +1555,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -1617,7 +1617,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -1703,7 +1703,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled": true, @@ -1762,7 +1762,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -1849,7 +1849,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -1923,7 +1923,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1993,7 +1993,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -2052,7 +2052,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2162,7 +2162,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2187,7 +2187,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2255,7 +2255,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2328,7 +2328,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2472,7 +2472,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -2541,7 +2541,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2610,7 +2610,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2688,7 +2688,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2759,7 +2759,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2828,7 +2828,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2920,7 +2920,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2941,7 +2941,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3014,7 +3014,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -3088,7 +3088,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3159,7 +3159,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3228,7 +3228,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3320,7 +3320,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3341,7 +3341,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3414,7 +3414,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "repository_id": "REPOSITORY_ID", @@ -3481,7 +3481,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -3617,7 +3617,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -3693,7 +3693,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3793,7 +3793,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -3862,7 +3862,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3935,7 +3935,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4025,7 +4025,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_organization_ids": [ @@ -4095,7 +4095,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4160,7 +4160,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4234,7 +4234,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4363,7 +4363,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "runners": [ @@ -4433,7 +4433,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4498,7 +4498,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4563,7 +4563,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -4704,7 +4704,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -4781,7 +4781,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -4882,7 +4882,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -4952,7 +4952,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5025,7 +5025,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5342,7 +5342,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -5412,7 +5412,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5477,7 +5477,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5551,7 +5551,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5680,7 +5680,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "runners": [ @@ -5750,7 +5750,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5815,7 +5815,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5882,7 +5882,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -5986,7 +5986,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -6074,7 +6074,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -6124,7 +6124,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -6183,7 +6183,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -6268,7 +6268,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -6323,7 +6323,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -6424,7 +6424,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -6535,7 +6535,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -6630,7 +6630,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -6723,7 +6723,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -6822,7 +6822,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -6926,7 +6926,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -7014,7 +7014,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -7064,7 +7064,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -7123,7 +7123,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -7208,7 +7208,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -7263,7 +7263,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -7364,7 +7364,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -7475,7 +7475,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -7570,7 +7570,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -7659,7 +7659,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -7767,7 +7767,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7881,7 +7881,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7979,7 +7979,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8039,7 +8039,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8108,7 +8108,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8203,7 +8203,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8268,7 +8268,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8379,7 +8379,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -8500,7 +8500,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -8605,7 +8605,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8704,7 +8704,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8806,7 +8806,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8978,7 +8978,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9075,7 +9075,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9334,7 +9334,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9590,7 +9590,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9831,7 +9831,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9896,7 +9896,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -9999,7 +9999,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10068,7 +10068,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10133,7 +10133,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10206,7 +10206,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10377,7 +10377,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10483,7 +10483,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10644,7 +10644,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10902,7 +10902,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11003,7 +11003,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11088,7 +11088,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11184,7 +11184,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "topic-branch", @@ -11263,7 +11263,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11323,7 +11323,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -11404,7 +11404,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11484,7 +11484,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -11556,7 +11556,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11620,7 +11620,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -11692,7 +11692,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME", @@ -11756,7 +11756,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -11819,7 +11819,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -11882,7 +11882,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -11919,7 +11919,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -12057,7 +12057,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -12213,7 +12213,7 @@ "key": "202", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -12225,7 +12225,7 @@ "key": "205", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -12283,7 +12283,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -12425,7 +12425,7 @@ { "key": "205", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -12478,7 +12478,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -12556,7 +12556,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -12622,7 +12622,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -12746,7 +12746,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12900,7 +12900,7 @@ "key": "202", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12916,7 +12916,7 @@ "key": "205", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -12995,7 +12995,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -13033,7 +13033,7 @@ { "key": "alternative-response-with-star-creation-timestamps", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -13146,7 +13146,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -13283,7 +13283,7 @@ { "key": "alternative-response-with-star-creation-timestamps", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -13475,7 +13475,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -13546,7 +13546,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -13617,7 +13617,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -13725,7 +13725,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -13925,7 +13925,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -14003,7 +14003,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -14095,7 +14095,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -14159,7 +14159,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -14214,7 +14214,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -14393,7 +14393,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -14538,7 +14538,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -14622,7 +14622,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "code": "CODE" @@ -14749,7 +14749,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -14849,7 +14849,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -14954,7 +14954,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -15846,7 +15846,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "respoitory": "Hello-World", @@ -16054,7 +16054,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -16108,7 +16108,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -16157,7 +16157,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "app_slug": "APP_SLUG" @@ -16252,7 +16252,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -16357,7 +16357,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -16462,7 +16462,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -16570,7 +16570,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -16738,7 +16738,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -16789,7 +16789,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -16972,7 +16972,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -17172,7 +17172,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1, @@ -17244,7 +17244,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1, @@ -17320,7 +17320,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -17388,7 +17388,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -17503,7 +17503,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -17614,7 +17614,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -18545,7 +18545,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a", @@ -18679,7 +18679,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -18776,7 +18776,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content_type": "json", @@ -18840,7 +18840,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -18919,7 +18919,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "delivery_id": "DELIVERY_ID" @@ -19016,7 +19016,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "delivery_id": "DELIVERY_ID" @@ -19090,7 +19090,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -19210,7 +19210,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19300,7 +19300,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19385,7 +19385,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_name": "my_renamed_branch" @@ -19568,7 +19568,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "branch": "main" @@ -19669,7 +19669,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "base": "master", @@ -19857,7 +19857,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -20868,7 +20868,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "required_status_checks": { @@ -20992,7 +20992,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21062,7 +21062,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21133,7 +21133,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21204,7 +21204,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21274,7 +21274,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21553,7 +21553,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "dismissal_restrictions": { @@ -21694,7 +21694,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21764,7 +21764,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21839,7 +21839,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21914,7 +21914,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21984,7 +21984,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22148,7 +22148,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "strict": true, @@ -22237,7 +22237,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22303,7 +22303,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22391,7 +22391,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22488,7 +22488,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22580,7 +22580,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22658,7 +22658,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22810,7 +22810,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22876,7 +22876,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23004,7 +23004,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23132,7 +23132,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23260,7 +23260,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23374,7 +23374,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23475,7 +23475,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23576,7 +23576,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23677,7 +23677,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23764,7 +23764,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23871,7 +23871,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23978,7 +23978,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24085,7 +24085,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25124,7 +25124,7 @@ "key": "example-of-in-progress-conclusion", "request": { "contentType": "application/json", - "description": "

Example of an in_progress conclusion

", + "description": "Example of an in_progress conclusion", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -25243,7 +25243,7 @@ "key": "example-of-completed-conclusion", "request": { "contentType": "application/json", - "description": "

Example of a completed conclusion

", + "description": "Example of a completed conclusion", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -25444,7 +25444,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26541,7 +26541,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -26753,7 +26753,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26833,7 +26833,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26965,7 +26965,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27191,7 +27191,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27356,7 +27356,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3" @@ -27676,7 +27676,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3" @@ -28105,7 +28105,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "auto_trigger_checks": [ @@ -28417,7 +28417,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28783,7 +28783,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28886,7 +28886,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29225,7 +29225,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29421,7 +29421,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29607,7 +29607,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "dismissed", @@ -29789,7 +29789,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29967,7 +29967,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30088,7 +30088,7 @@ { "key": "response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30199,7 +30199,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30340,7 +30340,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30429,7 +30429,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30487,7 +30487,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -30548,7 +30548,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key": "KEY" @@ -30656,7 +30656,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30752,7 +30752,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30851,7 +30851,7 @@ "key": "response-when-a-new-invitation-is-created", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31046,7 +31046,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31111,7 +31111,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31215,7 +31215,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31417,7 +31417,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31601,7 +31601,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31657,7 +31657,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -31835,7 +31835,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "invitation_id": "INVITATION_ID" @@ -31896,7 +31896,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "invitation_id": "INVITATION_ID" @@ -32035,7 +32035,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32197,7 +32197,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32296,7 +32296,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32901,7 +32901,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33092,7 +33092,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33438,7 +33438,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33539,7 +33539,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33654,7 +33654,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Nice change" @@ -33761,7 +33761,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33849,7 +33849,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -33990,7 +33990,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff", @@ -34125,7 +34125,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34316,7 +34316,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -34466,7 +34466,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "success", @@ -34574,7 +34574,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -34644,7 +34644,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -34703,7 +34703,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -34813,7 +34813,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -34838,7 +34838,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -34906,7 +34906,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -34979,7 +34979,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -35123,7 +35123,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -35192,7 +35192,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -35261,7 +35261,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -35339,7 +35339,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -35410,7 +35410,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -35479,7 +35479,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -35571,7 +35571,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -35592,7 +35592,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -35665,7 +35665,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -35742,7 +35742,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -35838,7 +35838,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "octocat@octomac", @@ -35921,7 +35921,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -36000,7 +36000,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -36122,7 +36122,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -36321,7 +36321,7 @@ "key": "simple-example", "request": { "contentType": "application/json", - "description": "

Simple example

", + "description": "Simple example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "topic-branch", @@ -36441,7 +36441,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -36549,7 +36549,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -36633,7 +36633,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -36776,7 +36776,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -37072,7 +37072,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -37215,7 +37215,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -37300,7 +37300,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -37490,7 +37490,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "environment": "production", @@ -37610,7 +37610,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -37691,7 +37691,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37732,7 +37732,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37821,7 +37821,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37853,7 +37853,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37885,7 +37885,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37917,7 +37917,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37949,7 +37949,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -37981,7 +37981,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38013,7 +38013,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38045,7 +38045,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38077,7 +38077,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38109,7 +38109,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38143,7 +38143,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38210,7 +38210,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38247,7 +38247,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38363,7 +38363,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -38564,7 +38564,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -38654,7 +38654,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -38836,7 +38836,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -38911,7 +38911,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -39095,7 +39095,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "events": [ @@ -39167,7 +39167,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -39212,7 +39212,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -39270,7 +39270,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ldap_dn": "cn=Enterprise Ops,ou=teams,dc=github,dc=com" @@ -39334,7 +39334,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -39394,7 +39394,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ldap_dn": "uid=asdf,ou=users,dc=github,dc=com" @@ -39490,7 +39490,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -39531,7 +39531,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -39574,7 +39574,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -39632,7 +39632,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -39664,7 +39664,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -39730,7 +39730,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "maintenance": "{\"enabled\":true, \"when\":\"now\"}" @@ -39788,7 +39788,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -39972,7 +39972,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "settings": "{ \"enterprise\": { \"public_pages\": true }}" @@ -40007,7 +40007,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -40065,7 +40065,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "authorized_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCssTL/Vtu/ODLTj0VtZoRAbvf7uiv5997GyDq0MoAZUjb5jmA5wYe2/wF6sFuhiZTnZoF1ZtCHunPp0hM/GHrn6VySBhNncx14YO8FPt1CIhEeRMSEjUK9cY3xAbS365oXY8vnUHJsS9+1tr/2bx/+4NJfcUt/Ezf1OR/0LStQXw==" @@ -40126,7 +40126,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "authorized_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQCssTL/Vtu/ODLTj0VtZoRAbvf7uiv5997GyDq0MoAZUjb5jmA5wYe2/wF6sFuhiZTnZoF1ZtCHunPp0hM/GHrn6VySBhNncx14YO8FPt1CIhEeRMSEjUK9cY3xAbS365oXY8vnUHJsS9+1tr/2bx/+4NJfcUt/Ezf1OR/0LStQXw==" @@ -40205,7 +40205,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -40248,7 +40248,7 @@ "key": "default", "request": { "contentType": "application/x-www-form-urlencoded", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -40339,7 +40339,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -40403,7 +40403,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -40486,7 +40486,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enforcement": "enabled", @@ -40553,7 +40553,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -40628,7 +40628,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "github", @@ -40701,7 +40701,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "the-new-octocats" @@ -40794,7 +40794,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -40881,7 +40881,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "DevTools Hook Env", @@ -40944,7 +40944,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -41026,7 +41026,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -41092,7 +41092,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -41141,7 +41141,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -41197,7 +41197,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -41289,7 +41289,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -41413,7 +41413,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Check Commits", @@ -41497,7 +41497,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_hook_id": "PRE_RECEIVE_HOOK_ID" @@ -41632,7 +41632,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Check Commits", @@ -41714,7 +41714,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_hook_id": "PRE_RECEIVE_HOOK_ID" @@ -41817,7 +41817,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -41890,7 +41890,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -41978,7 +41978,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enforcement": "enabled" @@ -42053,7 +42053,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42156,7 +42156,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -42225,7 +42225,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_ids": "KEY_IDS" @@ -42279,7 +42279,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -42356,7 +42356,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "token_id": "TOKEN_ID" @@ -42411,7 +42411,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "monalisa", @@ -42489,7 +42489,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "thenewmonalisa" @@ -42542,7 +42542,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -42601,7 +42601,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -42638,7 +42638,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -42709,7 +42709,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -42754,7 +42754,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -42799,7 +42799,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -42855,7 +42855,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -42911,7 +42911,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -42978,7 +42978,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -43139,7 +43139,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -43232,7 +43232,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -43355,7 +43355,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -43459,7 +43459,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -43598,7 +43598,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -43667,7 +43667,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -43742,7 +43742,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -43850,7 +43850,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -43956,7 +43956,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -44065,7 +44065,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -44122,7 +44122,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -44179,7 +44179,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -44245,7 +44245,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -44347,7 +44347,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -44467,7 +44467,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -44571,7 +44571,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -44667,7 +44667,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -44779,7 +44779,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -44868,7 +44868,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -44960,7 +44960,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "Content of the blob", @@ -45049,7 +45049,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45323,7 +45323,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -45444,7 +45444,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45569,7 +45569,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45658,7 +45658,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45760,7 +45760,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "refs/heads/featureA", @@ -45865,7 +45865,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "sha": "aa218f56b14c9653891f9e74264a383fa43fefbd", @@ -45950,7 +45950,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46134,7 +46134,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag": "v0.0.1", @@ -46237,7 +46237,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46476,7 +46476,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "base_tree": "9fb037999f264ba9a7fc6274d15fa3ae2ab98312", @@ -46589,7 +46589,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46636,7 +46636,7 @@ { "key": "response-recursively-retrieving-a-tree", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46700,7 +46700,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -46756,7 +46756,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "name": "NAME" @@ -46940,7 +46940,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -47356,7 +47356,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -47794,7 +47794,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48132,7 +48132,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Found a bug", @@ -48385,7 +48385,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -48756,7 +48756,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Found a bug", @@ -49032,7 +49032,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49113,7 +49113,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49258,7 +49258,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -49601,7 +49601,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49692,7 +49692,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -49775,7 +49775,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "assignees": [ @@ -50018,7 +50018,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "assignees": [ @@ -50295,7 +50295,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -50401,7 +50401,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -50513,7 +50513,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Me too" @@ -50617,7 +50617,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -50710,7 +50710,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -50828,7 +50828,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Me too" @@ -50955,7 +50955,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51192,7 +51192,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51494,7 +51494,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51620,7 +51620,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -51725,7 +51725,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -51840,7 +51840,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -51940,7 +51940,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52018,7 +52018,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52113,7 +52113,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52222,7 +52222,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "bug", @@ -52309,7 +52309,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52417,7 +52417,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_name": "bug :bug:", @@ -52497,7 +52497,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52580,7 +52580,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52720,7 +52720,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52863,7 +52863,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "v1.0", @@ -52979,7 +52979,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -53130,7 +53130,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "v1.0", @@ -53239,7 +53239,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -53328,7 +53328,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -53404,7 +53404,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -53502,7 +53502,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "license": "LICENSE" @@ -53594,7 +53594,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -53697,7 +53697,7 @@ "key": "200", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -53761,7 +53761,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -53793,7 +53793,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -53850,7 +53850,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -53882,7 +53882,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -53938,7 +53938,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -54009,7 +54009,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -54088,7 +54088,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -54185,7 +54185,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -54355,7 +54355,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -54463,7 +54463,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -54749,7 +54749,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "repositories": [ @@ -54994,7 +54994,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -55214,7 +55214,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -55511,7 +55511,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -55788,7 +55788,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "migration_id": "MIGRATION_ID" @@ -55965,7 +55965,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -56040,7 +56040,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "grant_id": "GRANT_ID" @@ -56112,7 +56112,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "grant_id": "GRANT_ID" @@ -56187,7 +56187,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -56341,7 +56341,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -56491,7 +56491,7 @@ "key": "response-if-returning-an-existing-token", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766" @@ -56528,7 +56528,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766" @@ -56681,7 +56681,7 @@ "key": "response-if-returning-an-existing-token", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -56719,7 +56719,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -56795,7 +56795,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -56949,7 +56949,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -57020,7 +57020,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "authorization_id": "AUTHORIZATION_ID" @@ -57090,7 +57090,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -57153,7 +57153,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -57437,7 +57437,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "billing_email": "mona@github.com", @@ -57628,7 +57628,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -57827,7 +57827,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -57938,7 +57938,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -58027,7 +58027,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -58092,7 +58092,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "organization_id": "ORGANIZATION_ID" @@ -58200,7 +58200,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -58285,7 +58285,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -58348,7 +58348,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -58407,7 +58407,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -58527,7 +58527,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -58631,7 +58631,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -58703,7 +58703,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -58780,7 +58780,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -58839,7 +58839,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -58898,7 +58898,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -58966,7 +58966,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -59107,7 +59107,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -59215,7 +59215,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "active" @@ -59350,7 +59350,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -59427,7 +59427,7 @@ { "key": "202", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -59442,7 +59442,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -59509,7 +59509,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -59579,7 +59579,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -59864,7 +59864,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -59958,7 +59958,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -60209,7 +60209,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "active": true, @@ -60297,7 +60297,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -60356,7 +60356,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -60476,7 +60476,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -60556,7 +60556,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -60657,7 +60657,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -60774,7 +60774,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -60838,7 +60838,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -60900,7 +60900,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61051,7 +61051,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "source": { @@ -61214,7 +61214,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "cname": "octocatblog.com", @@ -61284,7 +61284,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61365,7 +61365,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61454,7 +61454,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61514,7 +61514,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61610,7 +61610,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61726,7 +61726,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -61832,7 +61832,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Organization Roadmap", @@ -61936,7 +61936,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -62093,7 +62093,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -62197,7 +62197,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -62304,7 +62304,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -62436,7 +62436,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Projects Documentation", @@ -62560,7 +62560,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -62686,7 +62686,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -62775,7 +62775,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -62898,7 +62898,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -62996,7 +62996,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -63084,7 +63084,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -63182,7 +63182,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -63315,7 +63315,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -63448,7 +63448,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -63565,7 +63565,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -63640,7 +63640,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -63715,7 +63715,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -63807,7 +63807,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -63893,7 +63893,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -63961,7 +63961,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -64033,7 +64033,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -64112,7 +64112,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -64196,7 +64196,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -64360,7 +64360,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65011,7 +65011,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Amazing new feature", @@ -65623,7 +65623,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -66285,7 +66285,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "new title", @@ -66916,7 +66916,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67080,7 +67080,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67168,7 +67168,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67280,7 +67280,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67382,7 +67382,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "expected_head_sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e" @@ -67512,7 +67512,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67635,7 +67635,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67772,7 +67772,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "I like this too!" @@ -67897,7 +67897,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68021,7 +68021,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68244,7 +68244,7 @@ "key": "example-for-a-multi-line-comment", "request": { "contentType": "application/json", - "description": "

Example for a multi-line comment

", + "description": "Example for a multi-line comment", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff!", @@ -68403,7 +68403,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff!" @@ -68553,7 +68553,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68685,7 +68685,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "reviewers": [ @@ -69353,7 +69353,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "reviewers": [ @@ -69452,7 +69452,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -69761,7 +69761,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "commit_id": "ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091", @@ -69895,7 +69895,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70025,7 +70025,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "This is close to perfect! Please address the suggested inline change. And add more about this." @@ -70147,7 +70147,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70288,7 +70288,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70442,7 +70442,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70590,7 +70590,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70683,7 +70683,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -70842,7 +70842,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -70967,7 +70967,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -71015,7 +71015,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -71133,7 +71133,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -71237,7 +71237,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -71352,7 +71352,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -71399,7 +71399,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -71507,7 +71507,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -71555,7 +71555,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "reaction_id": "REACTION_ID" @@ -71671,7 +71671,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71790,7 +71790,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -71837,7 +71837,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -71949,7 +71949,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -72052,7 +72052,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -72171,7 +72171,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -72218,7 +72218,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -72330,7 +72330,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -72433,7 +72433,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -72556,7 +72556,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -72603,7 +72603,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -72715,7 +72715,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -72818,7 +72818,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -72937,7 +72937,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -72984,7 +72984,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -73096,7 +73096,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73197,7 +73197,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73314,7 +73314,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -73361,7 +73361,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -73473,7 +73473,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73576,7 +73576,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -73691,7 +73691,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -73814,7 +73814,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -73919,7 +73919,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -74027,7 +74027,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74231,7 +74231,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -74413,7 +74413,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -74483,7 +74483,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74624,7 +74624,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74769,7 +74769,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74970,7 +74970,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -75119,7 +75119,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -75186,7 +75186,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -75325,7 +75325,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "foo-1.0.0-osx.zip", @@ -75429,7 +75429,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -75512,7 +75512,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -75632,7 +75632,7 @@ "key": "default", "request": { "contentType": "*/*", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -75786,7 +75786,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -76118,7 +76118,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Hello-World", @@ -76314,7 +76314,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -77353,7 +77353,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Hello-World", @@ -77943,7 +77943,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -78037,7 +78037,7 @@ { "key": "response-if-repository-contains-content", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -78152,7 +78152,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "event_type": "on-demand-test", @@ -78218,7 +78218,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -78296,7 +78296,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -78404,7 +78404,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -78490,7 +78490,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -78580,7 +78580,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -78662,7 +78662,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "names": [ @@ -78765,7 +78765,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_owner": "github", @@ -79103,7 +79103,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "owner": "octocat", @@ -79292,7 +79292,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -79514,7 +79514,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -79903,7 +79903,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -80156,7 +80156,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -80329,7 +80329,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -80412,7 +80412,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "key_prefix": "TICKET-", @@ -80490,7 +80490,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -80565,7 +80565,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -80646,7 +80646,7 @@ { "key": "response-if-content-is-a-file", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -80681,7 +80681,7 @@ { "key": "response-if-content-is-a-directory", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -80732,7 +80732,7 @@ { "key": "response-if-content-is-a-symlink", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -80766,7 +80766,7 @@ { "key": "response-if-content-is-a-submodule", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -81062,7 +81062,7 @@ "key": "example-for-creating-a-file", "request": { "contentType": "application/json", - "description": "

Example for creating a file

", + "description": "Example for creating a file", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -81140,7 +81140,7 @@ "key": "example-for-updating-a-file", "request": { "contentType": "application/json", - "description": "

Example for updating a file

", + "description": "Example for updating a file", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "a new commit message", @@ -81423,7 +81423,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -81550,7 +81550,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -81651,7 +81651,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -81743,7 +81743,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -81808,7 +81808,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -81900,7 +81900,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -82087,7 +82087,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -82670,7 +82670,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -82729,7 +82729,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -82822,7 +82822,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -83008,7 +83008,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -83237,7 +83237,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -83450,7 +83450,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -83582,7 +83582,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -83765,7 +83765,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -83942,7 +83942,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -84086,7 +84086,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -84684,7 +84684,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -85291,7 +85291,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -85411,7 +85411,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -85535,7 +85535,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "resolved", @@ -85669,7 +85669,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -85791,7 +85791,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -85946,7 +85946,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Justice League", @@ -86062,7 +86062,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -86229,7 +86229,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -86337,7 +86337,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -86410,7 +86410,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -86518,7 +86518,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -86645,7 +86645,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -86714,7 +86714,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -86788,7 +86788,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -86968,7 +86968,7 @@ { "key": "alternative-response-with-repository-permissions", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -87318,7 +87318,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -87393,7 +87393,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -87468,7 +87468,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -87543,7 +87543,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -87700,7 +87700,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -87768,7 +87768,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -87882,7 +87882,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -87953,7 +87953,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -88055,7 +88055,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -88172,7 +88172,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -88239,7 +88239,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -88311,7 +88311,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -88485,7 +88485,7 @@ { "key": "alternative-response-with-extra-repository-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -88822,7 +88822,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -88895,7 +88895,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -88960,7 +88960,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -89055,7 +89055,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -89212,7 +89212,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -89336,7 +89336,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like apples?" @@ -89459,7 +89459,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -89591,7 +89591,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like pineapples?" @@ -89715,7 +89715,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -89804,7 +89804,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -89918,7 +89918,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like apples?" @@ -90031,7 +90031,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -90153,7 +90153,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like pineapples?" @@ -90267,7 +90267,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -90366,7 +90366,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -90504,7 +90504,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Our first team post", @@ -90623,7 +90623,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -90759,7 +90759,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Welcome to our first team post" @@ -90878,7 +90878,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -90957,7 +90957,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -91085,7 +91085,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Our first team post", @@ -91194,7 +91194,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -91320,7 +91320,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Welcome to our first team post" @@ -91429,7 +91429,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -91519,7 +91519,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -91606,7 +91606,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -91697,7 +91697,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -91776,7 +91776,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -91860,7 +91860,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -91941,7 +91941,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -92000,7 +92000,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -92067,7 +92067,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -92126,7 +92126,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -92207,7 +92207,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -92280,7 +92280,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -92323,7 +92323,7 @@ { "key": "response-with-public-and-private-profile-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -92380,7 +92380,7 @@ { "key": "response-with-public-profile-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -92553,7 +92553,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -92670,7 +92670,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -92739,7 +92739,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -92788,7 +92788,7 @@ { "key": "response-with-git-hub-plan-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -92902,7 +92902,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -92976,7 +92976,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -93052,7 +93052,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -93143,7 +93143,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -93214,7 +93214,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -93292,7 +93292,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -93378,7 +93378,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -93455,7 +93455,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -93516,7 +93516,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -93577,7 +93577,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -93656,7 +93656,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -93742,7 +93742,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -93819,7 +93819,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME", @@ -93880,7 +93880,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -93977,7 +93977,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -94075,7 +94075,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gpg_key_id": "GPG_KEY_ID" @@ -94172,7 +94172,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gpg_key_id": "GPG_KEY_ID" @@ -94255,7 +94255,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -94349,7 +94349,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -94442,7 +94442,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -94514,7 +94514,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_id": "KEY_ID" @@ -94585,7 +94585,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_id": "KEY_ID" @@ -94664,7 +94664,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -94738,7 +94738,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -94868,7 +94868,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -94960,7 +94960,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -95071,7 +95071,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -95198,7 +95198,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -95283,7 +95283,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -95582,7 +95582,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -95698,7 +95698,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -96023,7 +96023,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "active": true, @@ -96129,7 +96129,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -96198,7 +96198,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -96267,7 +96267,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", diff --git a/lib/rest/static/decorated/github.ae.json b/lib/rest/static/decorated/github.ae.json index d6c9fc59fd..06015fa141 100644 --- a/lib/rest/static/decorated/github.ae.json +++ b/lib/rest/static/decorated/github.ae.json @@ -52,7 +52,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -146,7 +146,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -224,7 +224,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -298,7 +298,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -382,7 +382,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -461,7 +461,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -542,7 +542,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled_organizations": "all", @@ -609,7 +609,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -689,7 +689,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_organization_ids": [ @@ -749,7 +749,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -804,7 +804,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -850,7 +850,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -936,7 +936,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -989,7 +989,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1070,7 +1070,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled_repositories": "all", @@ -1137,7 +1137,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1326,7 +1326,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -1386,7 +1386,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -1441,7 +1441,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -1487,7 +1487,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -1573,7 +1573,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -1635,7 +1635,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -1721,7 +1721,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "enabled": true, @@ -1780,7 +1780,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -1876,7 +1876,7 @@ "key": "selected_actions", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "github_owned_allowed": true, @@ -1950,7 +1950,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -2020,7 +2020,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -2079,7 +2079,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2189,7 +2189,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2214,7 +2214,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2282,7 +2282,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2355,7 +2355,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2499,7 +2499,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "selected_repository_ids": [ @@ -2568,7 +2568,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2637,7 +2637,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -2715,7 +2715,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2786,7 +2786,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2855,7 +2855,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -2947,7 +2947,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -2968,7 +2968,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "encrypted_value": "c2VjcmV0", @@ -3041,7 +3041,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -3108,7 +3108,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -3244,7 +3244,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -3320,7 +3320,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3420,7 +3420,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -3489,7 +3489,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3562,7 +3562,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3691,7 +3691,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "runners": [ @@ -3761,7 +3761,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3826,7 +3826,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -3891,7 +3891,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -4032,7 +4032,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -4109,7 +4109,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -4210,7 +4210,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Expensive hardware runners", @@ -4280,7 +4280,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -4344,7 +4344,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -4411,7 +4411,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -4515,7 +4515,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -4593,7 +4593,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -4643,7 +4643,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -4702,7 +4702,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4787,7 +4787,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -4851,7 +4851,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -4955,7 +4955,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -5033,7 +5033,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -5083,7 +5083,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -5142,7 +5142,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5227,7 +5227,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -5300,7 +5300,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -5414,7 +5414,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -5502,7 +5502,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -5562,7 +5562,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -5631,7 +5631,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -5726,7 +5726,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -5793,7 +5793,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -5965,7 +5965,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -6057,7 +6057,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -6271,7 +6271,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -6530,7 +6530,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -6828,7 +6828,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7112,7 +7112,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7196,7 +7196,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7490,7 +7490,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7556,7 +7556,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7625,7 +7625,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7690,7 +7690,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7763,7 +7763,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -7828,7 +7828,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8041,7 +8041,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8341,7 +8341,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8442,7 +8442,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8527,7 +8527,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8623,7 +8623,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "topic-branch", @@ -8702,7 +8702,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8774,7 +8774,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8866,7 +8866,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -8930,7 +8930,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -9002,7 +9002,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME", @@ -9040,7 +9040,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -9182,7 +9182,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -9338,7 +9338,7 @@ "key": "202", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -9350,7 +9350,7 @@ "key": "205", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -9408,7 +9408,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -9550,7 +9550,7 @@ { "key": "205", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -9603,7 +9603,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -9681,7 +9681,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -9747,7 +9747,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "thread_id": "THREAD_ID" @@ -9871,7 +9871,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10025,7 +10025,7 @@ "key": "202", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10041,7 +10041,7 @@ "key": "205", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10120,7 +10120,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10158,7 +10158,7 @@ { "key": "alternative-response-with-star-creation-timestamps", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10271,7 +10271,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -10408,7 +10408,7 @@ { "key": "alternative-response-with-star-creation-timestamps", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -10600,7 +10600,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10671,7 +10671,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10742,7 +10742,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -10850,7 +10850,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -11050,7 +11050,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11128,7 +11128,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11220,7 +11220,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11284,7 +11284,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -11339,7 +11339,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -11518,7 +11518,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -11663,7 +11663,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -11747,7 +11747,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "code": "CODE" @@ -11874,7 +11874,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -11974,7 +11974,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -12079,7 +12079,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -12971,7 +12971,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "respoitory": "Hello-World", @@ -13179,7 +13179,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -13233,7 +13233,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -13282,7 +13282,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "app_slug": "APP_SLUG" @@ -13377,7 +13377,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -13482,7 +13482,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -13587,7 +13587,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -13695,7 +13695,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -13863,7 +13863,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -13914,7 +13914,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -14097,7 +14097,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1 @@ -14297,7 +14297,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1, @@ -14369,7 +14369,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "installation_id": 1, @@ -14445,7 +14445,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -14513,7 +14513,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -14628,7 +14628,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -14739,7 +14739,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "access_token": "e72e16c7e42f292c6912e7710c838347ae178b4a" @@ -14805,7 +14805,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "client_id": "Iv1.8a61f9b3a7aba766", @@ -14886,7 +14886,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -14983,7 +14983,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content_type": "json", @@ -15047,7 +15047,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -15126,7 +15126,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "delivery_id": "DELIVERY_ID" @@ -15222,7 +15222,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "delivery_id": "DELIVERY_ID" @@ -15315,7 +15315,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -15405,7 +15405,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -15480,7 +15480,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "branch": "main" @@ -15581,7 +15581,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "base": "master", @@ -15769,7 +15769,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -16780,7 +16780,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "required_status_checks": { @@ -16904,7 +16904,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -16974,7 +16974,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -17045,7 +17045,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -17116,7 +17116,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -17186,7 +17186,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -17465,7 +17465,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "dismissal_restrictions": { @@ -17606,7 +17606,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -17676,7 +17676,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -17751,7 +17751,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -17826,7 +17826,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -17896,7 +17896,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18060,7 +18060,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "strict": true, @@ -18149,7 +18149,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18215,7 +18215,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18303,7 +18303,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18400,7 +18400,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18492,7 +18492,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18570,7 +18570,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18722,7 +18722,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18788,7 +18788,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -18916,7 +18916,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19044,7 +19044,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19172,7 +19172,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19286,7 +19286,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19387,7 +19387,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19488,7 +19488,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19589,7 +19589,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19676,7 +19676,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19783,7 +19783,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19890,7 +19890,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -19997,7 +19997,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -21036,7 +21036,7 @@ "key": "example-of-in-progress-conclusion", "request": { "contentType": "application/json", - "description": "

Example of an in_progress conclusion

", + "description": "Example of an in_progress conclusion", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -21155,7 +21155,7 @@ "key": "example-of-completed-conclusion", "request": { "contentType": "application/json", - "description": "

Example of a completed conclusion

", + "description": "Example of a completed conclusion", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -21356,7 +21356,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22453,7 +22453,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "mighty_readme", @@ -22665,7 +22665,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22745,7 +22745,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -22877,7 +22877,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23103,7 +23103,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -23268,7 +23268,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3" @@ -23588,7 +23588,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "head_sha": "d6fde92930d4715a2b49857d24b940956b26d2d3" @@ -24017,7 +24017,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "auto_trigger_checks": [ @@ -24329,7 +24329,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24695,7 +24695,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -24798,7 +24798,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25108,7 +25108,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25290,7 +25290,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25471,7 +25471,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "dismissed", @@ -25652,7 +25652,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25828,7 +25828,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -25949,7 +25949,7 @@ { "key": "response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26060,7 +26060,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26201,7 +26201,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26290,7 +26290,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26348,7 +26348,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -26409,7 +26409,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key": "KEY" @@ -26517,7 +26517,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26616,7 +26616,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26715,7 +26715,7 @@ "key": "response-when-a-new-invitation-is-created", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26910,7 +26910,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -26975,7 +26975,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27080,7 +27080,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27282,7 +27282,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27466,7 +27466,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -27522,7 +27522,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -27700,7 +27700,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "invitation_id": "INVITATION_ID" @@ -27761,7 +27761,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "invitation_id": "INVITATION_ID" @@ -27900,7 +27900,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28062,7 +28062,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28161,7 +28161,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28766,7 +28766,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -28957,7 +28957,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29303,7 +29303,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29404,7 +29404,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29519,7 +29519,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Nice change" @@ -29626,7 +29626,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29714,7 +29714,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -29855,7 +29855,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff", @@ -29990,7 +29990,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30181,7 +30181,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30331,7 +30331,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "success", @@ -30447,7 +30447,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30543,7 +30543,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "octocat@octomac", @@ -30626,7 +30626,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30705,7 +30705,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -30827,7 +30827,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31026,7 +31026,7 @@ "key": "simple-example", "request": { "contentType": "application/json", - "description": "

Simple example

", + "description": "Simple example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "topic-branch", @@ -31146,7 +31146,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31254,7 +31254,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31338,7 +31338,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31481,7 +31481,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31777,7 +31777,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -31920,7 +31920,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32005,7 +32005,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32195,7 +32195,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "environment": "production", @@ -32315,7 +32315,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -32396,7 +32396,7 @@ { "key": "200", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -32437,7 +32437,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -32526,7 +32526,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -32558,7 +32558,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -32590,7 +32590,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -32622,7 +32622,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -32654,7 +32654,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -32686,7 +32686,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -32718,7 +32718,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -32750,7 +32750,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -32782,7 +32782,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -32814,7 +32814,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -32848,7 +32848,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -32915,7 +32915,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -32952,7 +32952,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33005,7 +33005,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33187,7 +33187,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -33262,7 +33262,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -33446,7 +33446,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "events": [ @@ -33518,7 +33518,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -33563,7 +33563,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "hook_id": "HOOK_ID" @@ -33600,7 +33600,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33672,7 +33672,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "github", @@ -33745,7 +33745,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "login": "the-new-octocats" @@ -33838,7 +33838,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -33925,7 +33925,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "DevTools Hook Env", @@ -33988,7 +33988,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -34070,7 +34070,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -34136,7 +34136,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -34185,7 +34185,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -34241,7 +34241,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "pre_receive_environment_id": "PRE_RECEIVE_ENVIRONMENT_ID" @@ -34331,7 +34331,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE" @@ -34499,7 +34499,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "schemas": [ @@ -34603,7 +34603,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -34750,7 +34750,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "schemas": [ @@ -34950,7 +34950,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "schemas": [ @@ -35043,7 +35043,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "enterprise": "ENTERPRISE", @@ -35138,7 +35138,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35207,7 +35207,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_ids": "KEY_IDS" @@ -35261,7 +35261,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35327,7 +35327,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "token_id": "TOKEN_ID" @@ -35372,7 +35372,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -35431,7 +35431,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -35468,7 +35468,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -35539,7 +35539,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -35595,7 +35595,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -35651,7 +35651,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -35718,7 +35718,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35879,7 +35879,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -35972,7 +35972,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -36095,7 +36095,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -36199,7 +36199,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -36338,7 +36338,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -36407,7 +36407,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -36482,7 +36482,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -36590,7 +36590,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -36696,7 +36696,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -36805,7 +36805,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -36862,7 +36862,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -36919,7 +36919,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -36985,7 +36985,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -37087,7 +37087,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -37207,7 +37207,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -37311,7 +37311,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID" @@ -37407,7 +37407,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -37519,7 +37519,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -37608,7 +37608,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gist_id": "GIST_ID", @@ -37700,7 +37700,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "Content of the blob", @@ -37789,7 +37789,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -38063,7 +38063,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -38184,7 +38184,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -38309,7 +38309,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -38398,7 +38398,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -38500,7 +38500,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "ref": "refs/heads/featureA", @@ -38605,7 +38605,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "sha": "aa218f56b14c9653891f9e74264a383fa43fefbd", @@ -38690,7 +38690,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -38874,7 +38874,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag": "v0.0.1", @@ -38977,7 +38977,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -39216,7 +39216,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "base_tree": "9fb037999f264ba9a7fc6274d15fa3ae2ab98312", @@ -39329,7 +39329,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -39376,7 +39376,7 @@ { "key": "response-recursively-retrieving-a-tree", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -39440,7 +39440,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -39496,7 +39496,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "name": "NAME" @@ -39680,7 +39680,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -40096,7 +40096,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -40534,7 +40534,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -40872,7 +40872,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Found a bug", @@ -41125,7 +41125,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -41496,7 +41496,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Found a bug", @@ -41772,7 +41772,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -41853,7 +41853,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -41998,7 +41998,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -42341,7 +42341,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42432,7 +42432,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -42515,7 +42515,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "assignees": [ @@ -42758,7 +42758,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "assignees": [ @@ -43035,7 +43035,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43141,7 +43141,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43253,7 +43253,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Me too" @@ -43357,7 +43357,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43450,7 +43450,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43568,7 +43568,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Me too" @@ -43695,7 +43695,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -43932,7 +43932,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44234,7 +44234,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44360,7 +44360,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44465,7 +44465,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -44580,7 +44580,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "labels": [ @@ -44680,7 +44680,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44758,7 +44758,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44853,7 +44853,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -44962,7 +44962,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "bug", @@ -45049,7 +45049,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45157,7 +45157,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_name": "bug :bug:", @@ -45237,7 +45237,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45320,7 +45320,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45460,7 +45460,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45603,7 +45603,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "v1.0", @@ -45719,7 +45719,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -45870,7 +45870,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "v1.0", @@ -45979,7 +45979,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46068,7 +46068,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46144,7 +46144,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -46242,7 +46242,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "license": "LICENSE" @@ -46334,7 +46334,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46437,7 +46437,7 @@ "key": "200", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -46501,7 +46501,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -46533,7 +46533,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -46621,7 +46621,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -46653,7 +46653,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -46709,7 +46709,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46780,7 +46780,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46859,7 +46859,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -46956,7 +46956,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47126,7 +47126,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -47234,7 +47234,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -47520,7 +47520,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "repositories": [ @@ -47765,7 +47765,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -47985,7 +47985,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -48282,7 +48282,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -48559,7 +48559,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "migration_id": "MIGRATION_ID" @@ -48727,7 +48727,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -48790,7 +48790,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -49094,7 +49094,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "billing_email": "mona@github.com", @@ -49231,7 +49231,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -49342,7 +49342,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -49431,7 +49431,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -49543,7 +49543,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -49628,7 +49628,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -49691,7 +49691,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -49750,7 +49750,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -49870,7 +49870,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -49974,7 +49974,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -50050,7 +50050,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -50191,7 +50191,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -50299,7 +50299,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "active" @@ -50434,7 +50434,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -50511,7 +50511,7 @@ { "key": "202", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -50526,7 +50526,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -50593,7 +50593,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -50663,7 +50663,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -50948,7 +50948,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -51042,7 +51042,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -51293,7 +51293,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "active": true, @@ -51381,7 +51381,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -51440,7 +51440,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -51560,7 +51560,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -51640,7 +51640,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -51741,7 +51741,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -51857,7 +51857,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -51921,7 +51921,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -51983,7 +51983,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52134,7 +52134,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "source": { @@ -52299,7 +52299,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "cname": "octocatblog.com", @@ -52369,7 +52369,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52452,7 +52452,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52541,7 +52541,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52601,7 +52601,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52697,7 +52697,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -52813,7 +52813,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -52919,7 +52919,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Organization Roadmap", @@ -53023,7 +53023,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -53180,7 +53180,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -53284,7 +53284,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -53391,7 +53391,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -53523,7 +53523,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Projects Documentation", @@ -53647,7 +53647,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -53773,7 +53773,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -53862,7 +53862,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -53985,7 +53985,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -54083,7 +54083,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -54171,7 +54171,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "card_id": "CARD_ID" @@ -54269,7 +54269,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -54402,7 +54402,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -54535,7 +54535,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -54652,7 +54652,7 @@ "key": "204", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -54727,7 +54727,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -54802,7 +54802,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID", @@ -54894,7 +54894,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -54980,7 +54980,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -55048,7 +55048,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -55120,7 +55120,7 @@ "key": "201", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "column_id": "COLUMN_ID" @@ -55199,7 +55199,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -55283,7 +55283,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "project_id": "PROJECT_ID" @@ -55447,7 +55447,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -56098,7 +56098,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Amazing new feature", @@ -56710,7 +56710,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -57372,7 +57372,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "new title", @@ -58003,7 +58003,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -58167,7 +58167,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -58255,7 +58255,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -58367,7 +58367,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -58469,7 +58469,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "expected_head_sha": "6dcb09b5b57875f334f61aebed695e2e4193db5e" @@ -58599,7 +58599,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -58722,7 +58722,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -58859,7 +58859,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "I like this too!" @@ -58984,7 +58984,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -59108,7 +59108,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -59331,7 +59331,7 @@ "key": "example-for-a-multi-line-comment", "request": { "contentType": "application/json", - "description": "

Example for a multi-line comment

", + "description": "Example for a multi-line comment", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff!", @@ -59490,7 +59490,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Great stuff!" @@ -59640,7 +59640,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -59772,7 +59772,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "reviewers": [ @@ -60440,7 +60440,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "reviewers": [ @@ -60539,7 +60539,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -60848,7 +60848,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "commit_id": "ecdd80bb57125d7ba9641ffaa4d7d2c19d3f3091", @@ -60982,7 +60982,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61112,7 +61112,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "This is close to perfect! Please address the suggested inline change. And add more about this." @@ -61234,7 +61234,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61375,7 +61375,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61529,7 +61529,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61677,7 +61677,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -61770,7 +61770,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -61929,7 +61929,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -62056,7 +62056,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -62104,7 +62104,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -62224,7 +62224,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -62330,7 +62330,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -62447,7 +62447,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -62494,7 +62494,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -62604,7 +62604,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -62709,7 +62709,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -62830,7 +62830,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -62877,7 +62877,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -62995,7 +62995,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63100,7 +63100,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63221,7 +63221,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -63268,7 +63268,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -63382,7 +63382,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63487,7 +63487,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63612,7 +63612,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -63659,7 +63659,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -63773,7 +63773,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63878,7 +63878,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -63999,7 +63999,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -64046,7 +64046,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -64160,7 +64160,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -64263,7 +64263,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -64386,7 +64386,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -64433,7 +64433,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "content": "heart" @@ -64547,7 +64547,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -64629,7 +64629,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -64823,7 +64823,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -64966,7 +64966,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65107,7 +65107,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65252,7 +65252,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65453,7 +65453,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "tag_name": "v1.0.0", @@ -65602,7 +65602,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65669,7 +65669,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65808,7 +65808,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "foo-1.0.0-osx.zip", @@ -65912,7 +65912,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -65995,7 +65995,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -66115,7 +66115,7 @@ "key": "default", "request": { "contentType": "*/*", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -66269,7 +66269,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -66601,7 +66601,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Hello-World", @@ -66797,7 +66797,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -67836,7 +67836,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Hello-World", @@ -68426,7 +68426,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68502,7 +68502,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68611,7 +68611,7 @@ { "key": "response-if-repository-contains-content", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68726,7 +68726,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "event_type": "on-demand-test", @@ -68792,7 +68792,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68870,7 +68870,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -68956,7 +68956,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -69046,7 +69046,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -69128,7 +69128,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "names": [ @@ -69231,7 +69231,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "new_owner": "github", @@ -69569,7 +69569,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "owner": "octocat", @@ -69839,7 +69839,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -70228,7 +70228,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -70481,7 +70481,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -70654,7 +70654,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70737,7 +70737,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "key_prefix": "TICKET-", @@ -70815,7 +70815,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70890,7 +70890,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -70971,7 +70971,7 @@ { "key": "response-if-content-is-a-file", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71006,7 +71006,7 @@ { "key": "response-if-content-is-a-directory", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71057,7 +71057,7 @@ { "key": "response-if-content-is-a-symlink", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71091,7 +71091,7 @@ { "key": "response-if-content-is-a-submodule", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71387,7 +71387,7 @@ "key": "example-for-creating-a-file", "request": { "contentType": "application/json", - "description": "

Example for creating a file

", + "description": "Example for creating a file", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -71465,7 +71465,7 @@ "key": "example-for-updating-a-file", "request": { "contentType": "application/json", - "description": "

Example for updating a file

", + "description": "Example for updating a file", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "a new commit message", @@ -71748,7 +71748,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "message": "my commit message", @@ -71875,7 +71875,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -71976,7 +71976,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -72068,7 +72068,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -72133,7 +72133,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -72225,7 +72225,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -72412,7 +72412,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -72995,7 +72995,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73054,7 +73054,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -73147,7 +73147,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -73333,7 +73333,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -73562,7 +73562,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -73775,7 +73775,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -73907,7 +73907,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -74090,7 +74090,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -74267,7 +74267,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -74411,7 +74411,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74531,7 +74531,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -74655,7 +74655,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "state": "resolved", @@ -74773,7 +74773,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -74919,7 +74919,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "Justice League", @@ -75036,7 +75036,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -75204,7 +75204,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -75313,7 +75313,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -75386,7 +75386,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -75494,7 +75494,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -75621,7 +75621,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -75690,7 +75690,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -75764,7 +75764,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -75944,7 +75944,7 @@ { "key": "alternative-response-with-repository-permissions", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -76296,7 +76296,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -76371,7 +76371,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -76446,7 +76446,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -76521,7 +76521,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -76679,7 +76679,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -76748,7 +76748,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "new team name", @@ -76863,7 +76863,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -76934,7 +76934,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -77036,7 +77036,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -77153,7 +77153,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -77220,7 +77220,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -77292,7 +77292,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -77466,7 +77466,7 @@ { "key": "alternative-response-with-extra-repository-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -77805,7 +77805,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -77878,7 +77878,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -77943,7 +77943,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -78038,7 +78038,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -78196,7 +78196,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -78320,7 +78320,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like apples?" @@ -78443,7 +78443,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -78575,7 +78575,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like pineapples?" @@ -78699,7 +78699,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -78788,7 +78788,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -78902,7 +78902,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like apples?" @@ -79015,7 +79015,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -79137,7 +79137,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "body": "Do you like pineapples?" @@ -79251,7 +79251,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -79350,7 +79350,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -79488,7 +79488,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Our first team post", @@ -79607,7 +79607,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -79743,7 +79743,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Welcome to our first team post" @@ -79862,7 +79862,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -79941,7 +79941,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -80069,7 +80069,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Our first team post", @@ -80178,7 +80178,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -80304,7 +80304,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "title": "Welcome to our first team post" @@ -80413,7 +80413,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -80470,7 +80470,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -80571,7 +80571,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG" @@ -80654,7 +80654,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "group_id": 123 @@ -80742,7 +80742,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -80832,7 +80832,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -80919,7 +80919,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81010,7 +81010,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81089,7 +81089,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "org": "ORG", @@ -81173,7 +81173,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID" @@ -81254,7 +81254,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -81313,7 +81313,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -81380,7 +81380,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -81439,7 +81439,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -81520,7 +81520,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -81593,7 +81593,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "team_id": "TEAM_ID", @@ -81636,7 +81636,7 @@ { "key": "response-with-public-and-private-profile-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -81694,7 +81694,7 @@ { "key": "response-with-public-profile-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -81868,7 +81868,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -81986,7 +81986,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -82055,7 +82055,7 @@ { "key": "default-response", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -82104,7 +82104,7 @@ { "key": "response-with-git-hub-plan-information", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -82218,7 +82218,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -82292,7 +82292,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -82378,7 +82378,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -82455,7 +82455,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -82516,7 +82516,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -82577,7 +82577,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -82656,7 +82656,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -82742,7 +82742,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -82819,7 +82819,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME", @@ -82880,7 +82880,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -82977,7 +82977,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -83075,7 +83075,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gpg_key_id": "GPG_KEY_ID" @@ -83172,7 +83172,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "gpg_key_id": "GPG_KEY_ID" @@ -83255,7 +83255,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -83349,7 +83349,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -83442,7 +83442,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json" }, "response": { @@ -83514,7 +83514,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_id": "KEY_ID" @@ -83585,7 +83585,7 @@ { "key": "204", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "key_id": "KEY_ID" @@ -83664,7 +83664,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "username": "USERNAME" @@ -83738,7 +83738,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -83868,7 +83868,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -83960,7 +83960,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -84071,7 +84071,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -84197,7 +84197,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -84282,7 +84282,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -84581,7 +84581,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "name": "web", @@ -84697,7 +84697,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -85022,7 +85022,7 @@ "key": "default", "request": { "contentType": "application/json", - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "bodyParameters": { "active": true, @@ -85128,7 +85128,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -85197,7 +85197,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", @@ -85266,7 +85266,7 @@ { "key": "default", "request": { - "description": "

Example

", + "description": "Example", "acceptHeader": "application/vnd.github.v3+json", "parameters": { "owner": "OWNER", diff --git a/middleware/anchor-redirect.js b/middleware/anchor-redirect.js new file mode 100644 index 0000000000..c98390431a --- /dev/null +++ b/middleware/anchor-redirect.js @@ -0,0 +1,23 @@ +import express from 'express' +import { readCompressedJsonFileFallbackLazily } from '../lib/read-json-file.js' + +const clientSideRestAPIRedirects = readCompressedJsonFileFallbackLazily( + './lib/redirects/static/client-side-rest-api-redirects.json' +) +console.log(clientSideRestAPIRedirects) + +const router = express.Router() + +// Returns a client side redirect if one exists for the given path. +router.get('/', function redirects(req, res, next) { + if (!req.query.path) { + return res.status(400).send("Missing 'path' query string") + } + if (!req.query.hash) { + return res.status(400).send("Missing 'hash' query string") + } + const redirectFrom = `${req.query.path}#${req.query.hash}` + res.status(200).send({ to: clientSideRestAPIRedirects()[redirectFrom] } || null) +}) + +export default router diff --git a/middleware/index.js b/middleware/index.js index 0e6e23c12b..0fd2236812 100644 --- a/middleware/index.js +++ b/middleware/index.js @@ -35,6 +35,7 @@ import archivedEnterpriseVersionsAssets from './archived-enterprise-versions-ass import events from './events.js' import search from './search.js' import healthz from './healthz.js' +import anchorRedirect from './anchor-redirect.js' import remoteIP from './remote-ip.js' import archivedEnterpriseVersions from './archived-enterprise-versions.js' import robots from './robots.js' @@ -263,6 +264,7 @@ export default function (app) { app.use('/events', asyncMiddleware(instrument(events, './events'))) app.use('/search', asyncMiddleware(instrument(search, './search'))) app.use('/healthz', asyncMiddleware(instrument(healthz, './healthz'))) + app.use('/anchor-redirect', asyncMiddleware(instrument(anchorRedirect, './anchor-redirect'))) app.get('/_ip', asyncMiddleware(instrument(remoteIP, './remoteIP'))) // Check for a dropped connection before proceeding (again) diff --git a/script/rest/utils/operation.js b/script/rest/utils/operation.js index 2d6d57b149..3c3fbc4c15 100644 --- a/script/rest/utils/operation.js +++ b/script/rest/utils/operation.js @@ -98,7 +98,7 @@ export default class Operation { this.renderStatusCodes(), this.renderParameterDescriptions(), this.renderBodyParameterDescriptions(), - this.renderExampleRequestResponseDescriptions(), + this.renderExampleResponseDescriptions(), this.renderPreviewNotes(), ]) @@ -119,12 +119,10 @@ export default class Operation { return this } - async renderExampleRequestResponseDescriptions() { + async renderExampleResponseDescriptions() { return Promise.all( this.codeExamples.map(async (codeExample) => { codeExample.response.description = await renderContent(codeExample.response.description) - codeExample.request.description = await renderContent(codeExample.request.description) - return codeExample }) ) diff --git a/script/rest/utils/rest-api-overrides.json b/script/rest/utils/rest-api-overrides.json index 81b1748900..9e7824688d 100644 --- a/script/rest/utils/rest-api-overrides.json +++ b/script/rest/utils/rest-api-overrides.json @@ -778,6 +778,7 @@ }, "sectionUrls": { "/rest/repos#deploy-keys": "/rest/deploy-keys", - "/rest/deployments#deploy-keys": "/rest/deploy-keys" + "/rest/deployments#deploy-keys": "/rest/deploy-keys", + "/rest/repos#statuses": "/rest/commits/statuses" } } diff --git a/tests/unit/anchor-redirect.js b/tests/unit/anchor-redirect.js new file mode 100644 index 0000000000..f7ae7819fe --- /dev/null +++ b/tests/unit/anchor-redirect.js @@ -0,0 +1,44 @@ +import { describe, expect } from '@jest/globals' +import { get } from '../helpers/e2etest.js' +import clientSideRedirects from '../../lib/redirects/static/client-side-rest-api-redirects.json' + +describe('anchor-redirect middleware', () => { + test('returns correct redirect to url', async () => { + // test the first entry + const [key, value] = Object.entries(clientSideRedirects)[0] + const [path, hash] = key.split('#') + const sp = new URLSearchParams() + sp.set('path', path) + sp.set('hash', hash) + const res = await get('/anchor-redirect?' + sp) + expect(res.statusCode).toBe(200) + const { to } = JSON.parse(res.text) + expect(to).toBe(value) + }) + test('errors when path is not passed', async () => { + // test the first entry + const key = Object.keys(clientSideRedirects)[0] + const hash = key.split('#')[1] + const sp = new URLSearchParams() + sp.set('hash', hash) + const res = await get('/anchor-redirect?' + sp) + expect(res.statusCode).toBe(400) + }) + test('errors when path is not passed', async () => { + // test the first entry + const key = Object.keys(clientSideRedirects)[0] + const path = key.split('#')[0] + const sp = new URLSearchParams() + sp.set('path', path) + const res = await get('/anchor-redirect?' + sp) + expect(res.statusCode).toBe(400) + }) + test('unfound redirect returns undefined', async () => { + const sp = new URLSearchParams() + sp.set('path', 'foo') + sp.set('hash', 'bar') + const res = await get('/anchor-redirect?' + sp) + const { to } = JSON.parse(res.text) + expect(to).toBe(undefined) + }) +}) diff --git a/translations/es-ES/content/account-and-profile/index.md b/translations/es-ES/content/account-and-profile/index.md index b18c9902bc..046187445d 100644 --- a/translations/es-ES/content/account-and-profile/index.md +++ b/translations/es-ES/content/account-and-profile/index.md @@ -1,7 +1,7 @@ --- title: Tu cuenta y perfil en GitHub shortTitle: Cuenta y perfil -intro: 'Make {% data variables.product.product_name %} work best for you by adjusting the settings for your personal account, personalizing your profile page, and managing the notifications you receive for activity on {% data variables.product.prodname_dotcom %}.' +intro: 'Haz que {% data variables.product.product_name %} funcione de la mejor forma para ti configurando los ajustes para tu cuenta personal, personalizando tu página de perfil y administrando las notificaciones que recibes de la actividad en {% data variables.product.prodname_dotcom %}.' introLinks: quickstart: /get-started/onboarding/getting-started-with-your-github-account featuredLinks: diff --git a/translations/es-ES/content/account-and-profile/setting-up-and-managing-your-github-user-account/index.md b/translations/es-ES/content/account-and-profile/setting-up-and-managing-your-github-user-account/index.md index 706fe5a4bf..16980d4711 100644 --- a/translations/es-ES/content/account-and-profile/setting-up-and-managing-your-github-user-account/index.md +++ b/translations/es-ES/content/account-and-profile/setting-up-and-managing-your-github-user-account/index.md @@ -1,6 +1,6 @@ --- title: Configurar y administrar tu cuenta de usuario de GitHub -intro: 'You can manage settings in your GitHub personal account including email preferences, collaborator access for personal repositories, and organization memberships.' +intro: 'Puedes administrar los ajustes en tu cuenta personal de GitHub, incluyendo las preferencias de correo electrónico, acceso de colaborador para los repositorios personales y membrecías de organización.' shortTitle: Cuentas personales redirect_from: - /categories/setting-up-and-managing-your-github-user-account diff --git a/translations/es-ES/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository.md b/translations/es-ES/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository.md index 771790d0b5..a8a37f47ae 100644 --- a/translations/es-ES/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository.md +++ b/translations/es-ES/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/inviting-collaborators-to-a-personal-repository.md @@ -55,7 +55,7 @@ Si eres un miembro de una {% data variables.product.prodname_emu_enterprise %}, ## Leer más -- "[Permission levels for a personal account repository](/articles/permission-levels-for-a-user-account-repository/#collaborator-access-for-a-repository-owned-by-a-personal-account)" +- "[Niveles de permiso para un repositorio de una cuenta personal](/articles/permission-levels-for-a-user-account-repository/#collaborator-access-for-a-repository-owned-by-a-personal-account)" - "[Eliminar un colaborador de un repositorio personal](/articles/removing-a-collaborator-from-a-personal-repository)" - "[Eliminarte a ti mismo del repositorio de un colaborador](/articles/removing-yourself-from-a-collaborator-s-repository)" - "[Organizar los miembros en equipos](/organizations/organizing-members-into-teams)" diff --git a/translations/es-ES/content/actions/learn-github-actions/contexts.md b/translations/es-ES/content/actions/learn-github-actions/contexts.md index 37ebcb88d7..34914d02d6 100644 --- a/translations/es-ES/content/actions/learn-github-actions/contexts.md +++ b/translations/es-ES/content/actions/learn-github-actions/contexts.md @@ -57,6 +57,8 @@ In order to use property dereference syntax, the property name must: - start with `a-Z` or `_`. - be followed by `a-Z` `0-9` `-` or `_`. +If you attempt to dereference a non-existent property, it will evaluate to an empty string. + ### Determining when to use contexts {% data reusables.actions.using-context-or-environment-variables %} diff --git a/translations/es-ES/content/actions/using-workflows/events-that-trigger-workflows.md b/translations/es-ES/content/actions/using-workflows/events-that-trigger-workflows.md index 0debb55c21..ea47c1bf49 100644 --- a/translations/es-ES/content/actions/using-workflows/events-that-trigger-workflows.md +++ b/translations/es-ES/content/actions/using-workflows/events-that-trigger-workflows.md @@ -1157,7 +1157,7 @@ Puedes usar estos operadores en cualquiera de los cinco campos: Puedes usar [contrab guru](https://crontab.guru/) para generar tu sintaxis de cron y confirmar a qué hora se ejecutará. Para que puedas comenzar, hay también una lista de [ejemplos de crontab guru](https://crontab.guru/examples.html). -Las notificaciones para los flujos de trabajo programados se envían al usuario que modificó por última vez la sintaxis de cron en el archivo de flujo de trabajo. Para obtener más información, consulta la sección "[Notificaciones para las ejecuciones de flujo de trabajo](/actions/guides/about-continuous-integration#notifications-for-workflow-runs)". +Las notificaciones para los flujos de trabajo programados se envían al usuario que modificó por última vez la sintaxis de cron en el archivo de flujo de trabajo. Para obtener más información, consulta la sección "[Notificaciones para las ejecuciones de flujo de trabajo](/actions/monitoring-and-troubleshooting-workflows/notifications-for-workflow-runs)". ### `estado` diff --git a/translations/es-ES/content/admin/all-releases.md b/translations/es-ES/content/admin/all-releases.md index 0c39c5d3b3..c412a60061 100644 --- a/translations/es-ES/content/admin/all-releases.md +++ b/translations/es-ES/content/admin/all-releases.md @@ -1,6 +1,6 @@ --- title: Lanzamientos de GitHub Enterprise Server -intro: '{% data variables.product.company_short %} releases new versions of {% data variables.product.product_name %} regularly. You can review supported versions, see deprecation dates, and browse documentation for the release you''ve deployed.' +intro: '{% data variables.product.company_short %} lanza versiones nuevas de {% data variables.product.product_name %} con frecuencia. Puedes revisar versiones compatibles, ver fechas de obsolescencia y buscar documentación de los lanzamientos que hayas desplegado.' allowTitleToDifferFromFilename: true versions: ghes: '*' @@ -10,44 +10,44 @@ topics: shortTitle: Lanzamientos --- -## About releases of {% data variables.product.product_name %} +## Acerca de los lanzamientos de {% data variables.product.product_name %} -{% data reusables.enterprise.constantly-improving %} {% data variables.product.company_short %} supports the four most recent feature releases. For more information, see "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)." +{% data reusables.enterprise.constantly-improving %} {% data variables.product.company_short %} es compatible con los cuatro lanzamientos de características más recientes. For more information, see "[About upgrades to new releases](/admin/overview/about-upgrades-to-new-releases)." -You can see what's new for each release in the [release notes](/admin/release-notes), and you can view administrator and user documentation for all releases here on {% data variables.product.prodname_docs %}. When you read the documentation, make sure to select the version that reflects your product. Para obtener más información, consulta la sección "[Acerca de las versiones de {% data variables.product.prodname_docs %}](/get-started/learning-about-github/about-versions-of-github-docs)". +Puedes ver lo nuevo de cada lanzamiento en las [notas de lanzamiento](/admin/release-notes) y puedes ver la documentación de usuario y de administrador de todos los lanzamientos aquí en {% data variables.product.prodname_docs %}. Cuando leas la documentación, asegúrate de seleccionar la versión que refleje tu producto. Para obtener más información, consulta la sección "[Acerca de las versiones de {% data variables.product.prodname_docs %}](/get-started/learning-about-github/about-versions-of-github-docs)". -## Currently supported releases +## Lanzamientos con compatibilidad actual -{% data variables.product.company_short %} supports the following releases of {% data variables.product.product_name %}. For more information about the latest release, see the [{% data variables.product.prodname_enterprise %}](https://github.com/enterprise) website. +{% data variables.product.company_short %} es compatible con los siguientes lanzamientos de {% data variables.product.product_name %}. Para obtener más información sobre el lanzamiento más reciente, consulta el sitio web de [{% data variables.product.prodname_enterprise %}](https://github.com/enterprise). -| Versión | Lanzamiento | Deprecation | Notas de lanzamiento | Documentación | -|:------- |:----------- |:----------- |:-------------------- |:------------- | -| | | | | | +| Versión | Lanzamiento | Obsolesencia | Notas de lanzamiento | Documentación | +|:------- |:----------- |:------------ |:-------------------- |:------------- | +| | | | | | {%- for version in enterpriseServerReleases.supported %} -| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [{{version}} release notes](/enterprise-server@{{version}}/admin/release-notes) | [{{version}} documentation](/enterprise-server@{{version}}) | +| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [notas de lanzamiento de la {{version}}](/enterprise-server@{{version}}/admin/release-notes) | [documentación de la {{version}}](/enterprise-server@{{version}}) | {%- endfor %} -## Deprecated releases +## Lanzamientos obsoletos -{% data variables.product.company_short %} provides documentation for deprecated versions, but does not maintain or update the documentation. +{% data variables.product.company_short %} proporciona documentación para versiones obsoletas, pero no la mantiene ni actualiza. -| Versión | Lanzamiento | Deprecation | Notas de lanzamiento | Documentación | -|:------- |:----------- |:----------- |:-------------------- |:------------- | -| | | | | | +| Versión | Lanzamiento | Obsolesencia | Notas de lanzamiento | Documentación | +|:------- |:----------- |:------------ |:-------------------- |:------------- | +| | | | | | {%- for version in enterpriseServerReleases.deprecatedReleasesWithNewFormat %} -| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [{{version}} release notes](/enterprise-server@{{version}}/admin/release-notes) | [{{version}} documentation](/enterprise-server@{{version}}) | +| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [notas de lanzamiento de la {{version}}](/enterprise-server@{{version}}/admin/release-notes) | [documentación de la {{version}}](/enterprise-server@{{version}}) | {%- endfor %} {%- for version in enterpriseServerReleases.deprecatedReleasesWithLegacyFormat %} -| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [{{version}} release notes](https://enterprise.github.com/releases/series/{{version}}) | [{{version}} documentation](/enterprise/{{version}}) | +| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [notas de lanzamiento de la {{version}}](https://enterprise.github.com/releases/series/{{version}}) | [documentación de la {{version}}](/enterprise/{{version}}) | {%- endfor %} ### Documentación obsoletizada para desarrolladores -{% data variables.product.company_short %} hosted developer documentation for {% data variables.product.product_name %} on a separate site until the 2.17 release. {% data variables.product.company_short %} continues to provide developer documentation for version 2.16 and earlier, but does not maintain or update the documentation. +{% data variables.product.company_short %} hospedó documentación para desarrolladores para {% data variables.product.product_name %} en un sitio diferente hasta el lanzamiento 2.17. {% data variables.product.company_short %} sigue proporcionando documentación para desarrolladores para la versión 2.16 y anteriores, pero no la mantiene ni la actualiza. -| Versión | Lanzamiento | Deprecation | Developer documentation | -|:------- |:----------- |:----------- |:----------------------- | -| | | | | +| Versión | Lanzamiento | Obsolesencia | Documentación para desarrolladores | +|:------- |:----------- |:------------ |:---------------------------------- | +| | | | | {%- for version in enterpriseServerReleases.deprecatedReleasesOnDeveloperSite %} -| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [{{version}} developer documentation](https://developer.github.com/enterprise/{{version}}) | +| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [documentación para desarrolladores de la {{version}}](https://developer.github.com/enterprise/{{version}}) | {%- endfor %} diff --git a/translations/es-ES/content/admin/code-security/managing-supply-chain-security-for-your-enterprise/about-supply-chain-security-for-your-enterprise.md b/translations/es-ES/content/admin/code-security/managing-supply-chain-security-for-your-enterprise/about-supply-chain-security-for-your-enterprise.md index b1fbfbf822..8afea7fc0c 100644 --- a/translations/es-ES/content/admin/code-security/managing-supply-chain-security-for-your-enterprise/about-supply-chain-security-for-your-enterprise.md +++ b/translations/es-ES/content/admin/code-security/managing-supply-chain-security-for-your-enterprise/about-supply-chain-security-for-your-enterprise.md @@ -13,7 +13,7 @@ topics: - Dependency graph --- -You can allow users to identify their projects' dependencies by {% ifversion ghes %}enabling{% elsif ghae %}using{% endif %} the dependency graph for {% data variables.product.product_location %}. For more information, see "{% ifversion ghes %}[Enabling the dependency graph for your enterprise](/admin/code-security/managing-supply-chain-security-for-your-enterprise/enabling-the-dependency-graph-for-your-enterprise){% elsif ghae %}[About the dependency graph](/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph){% endif %}." +You can allow users to identify their projects' dependencies by {% ifversion ghes %}enabling{% elsif ghae %}using{% endif %} the dependency graph for {% data variables.product.product_location %}. Para obtener más información, consulta la sección "{% ifversion ghes %}[Habilitar la gráfica de dependencias para tu empresa](/admin/code-security/managing-supply-chain-security-for-your-enterprise/enabling-the-dependency-graph-for-your-enterprise){% elsif ghae %}[Acerca de la gráfica de dependencias](/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph){% endif %}". You can also allow users on {% data variables.product.product_location %} to find and fix vulnerabilities in their code dependencies by enabling {% data variables.product.prodname_dependabot_alerts %}{% ifversion ghes > 3.2 %} and {% data variables.product.prodname_dependabot_updates %}{% endif %}. Para obtener más información, consulta la sección "[Habilitar la {% data variables.product.prodname_dependabot %} en tu empresa](/admin/configuration/configuring-github-connect/enabling-dependabot-for-your-enterprise)". diff --git a/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-unified-contributions-for-your-enterprise.md b/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-unified-contributions-for-your-enterprise.md index 9caa19212d..cae9daaa0a 100644 --- a/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-unified-contributions-for-your-enterprise.md +++ b/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-unified-contributions-for-your-enterprise.md @@ -27,7 +27,7 @@ topics: Como propietario de empresa, puedes permitir que los usuarios finales envíen cuentas de contribuciones anonimizadas para su trabajo desde {% data variables.product.product_location %} hacia su gráfica de contribuciones de {% data variables.product.prodname_dotcom_the_website %}. -After you enable {% data variables.product.prodname_unified_contributions %}, before individual users can send contribution counts from {% data variables.product.product_location %} to {% data variables.product.prodname_dotcom_the_website %}, each user must also connect their user account on {% data variables.product.product_name %} with a personal account on {% data variables.product.prodname_dotcom_the_website %}. Para obtener más información, consulta la sección "[Enviar contribuciones empresariales a tu perfil de {% data variables.product.prodname_dotcom_the_website %}](/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/sending-enterprise-contributions-to-your-githubcom-profile)". +Después de que habilitas las {% data variables.product.prodname_unified_contributions %}, antes de que los usuarios individuales puedan enviar conteos de contribución desde {% data variables.product.product_location %} a {% data variables.product.prodname_dotcom_the_website %}, cada usuario también deberá conectar su cuenta de usuario en {% data variables.product.product_name %} con una cuenta personal de {% data variables.product.prodname_dotcom_the_website %}. Para obtener más información, consulta la sección "[Enviar contribuciones empresariales a tu perfil de {% data variables.product.prodname_dotcom_the_website %}](/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/sending-enterprise-contributions-to-your-githubcom-profile)". {% data reusables.github-connect.sync-frequency %} diff --git a/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise.md b/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise.md index c39bdca407..6139897158 100644 --- a/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise.md +++ b/translations/es-ES/content/admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise.md @@ -32,7 +32,7 @@ Puedes elegir permitir los resultados de búsqueda para los repositorios públic Los usuarios jamás podrán buscar en {% data variables.product.product_location %} desde {% data variables.product.prodname_dotcom_the_website %}, incluso si tienen acceso a ambos ambientes. -After you enable unified search for {% data variables.product.product_location %}, before individual users can see search results from private repositories on {% data variables.product.prodname_dotcom_the_website %} in {% data variables.product.product_location %}, each user must also connect their user account on {% data variables.product.product_name %} with a user account on {% data variables.product.prodname_dotcom_the_website %}. Para obtener más información, consulta la sección "[Habilitar la búsqueda de repositorios de {% data variables.product.prodname_dotcom_the_website %} en tu cuenta de empresa privada](/search-github/getting-started-with-searching-on-github/enabling-githubcom-repository-search-from-your-private-enterprise-environment)". +Después de que habilites la búsqueda unificada para {% data variables.product.product_location %}, antes de que los usuarios individuales puedan buscar resultados de los repositorios privados de {% data variables.product.prodname_dotcom_the_website %} en {% data variables.product.product_location %}, cada usuario también deberá conectar su cuenta de usuario en {% data variables.product.product_name %} con una cuenta de usuario en {% data variables.product.prodname_dotcom_the_website %}. Para obtener más información, consulta la sección "[Habilitar la búsqueda de repositorios de {% data variables.product.prodname_dotcom_the_website %} en tu cuenta de empresa privada](/search-github/getting-started-with-searching-on-github/enabling-githubcom-repository-search-from-your-private-enterprise-environment)". Buscar a través de las API REST y GraphQL no incluye {% data variables.product.prodname_dotcom_the_website %} los resultados de búsqueda. No están admitidas la búsqueda avanzada y buscar wikis en {% data variables.product.prodname_dotcom_the_website %}. diff --git a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md index 7f2748e828..a3d1451d6a 100644 --- a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md +++ b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/configuring-github-pages-for-your-enterprise.md @@ -61,22 +61,22 @@ Si el aislamiento de subdominios está inhabilitado en tu empresa, también debe {% ifversion ghes > 3.4 %} -## Configuring {% data variables.product.prodname_pages %} response headers for your enterprise +## Configurar los encabezados de respuesta de {% data variables.product.prodname_pages %} para tu empresa -You can add or override response headers for {% data variables.product.prodname_pages %} sites hosted by {% data variables.product.product_location %}. +Puedes agregar o sobrescribir los encabezados de respuesta para los sitios de {% data variables.product.prodname_pages %} que hospede {% data variables.product.product_location %}. {% warning %} -**Warning:** Ensure that your response headers are properly configured before saving. Improper configurations may negatively impact the security of {% data variables.product.product_location %}. +**Advertencia:** Asegúrate de que tus encabezados de respuesta se configuren adecuadamente antes de guardarlos. Las configuraciones inadecuadas podrían impactar negativamente la seguridad de {% data variables.product.product_location %}. {% endwarning %} {% data reusables.enterprise_site_admin_settings.access-settings %} {% data reusables.enterprise_site_admin_settings.management-console %} {% data reusables.enterprise_management_console.pages-tab %} -1. Type the headers settings, then click **Add headers**. - - In the **Http Header Name** field, type the header name. The length of header name should less than 128 characters. - - In the **Http Header Value** field, type the header value. The length of header value should less than 300 characters. ![The {% data variables.product.prodname_pages %} response header name and value fields in the {% data variables.enterprise.management_console %}](/assets/images/enterprise/management-console/pages-override-header-section.png) +1. Teclea los ajustes de los encabezados y luego haz clic en **Agregar encabezados**. + - En el campo **Nombre de encabezado http**, teclea el nombre del encabezado. La longitud del nombre del encabezado debe tener menos de 128 caracteres. + - En el campo de **Valor de encabezado http**, teclea el valor del encabezado. La longitud del valor del encabezado debe ser de menos de 300 caracteres. ![Los campos de nombre y valor del encabezado de respuesta de {% data variables.product.prodname_pages %} en la {% data variables.enterprise.management_console %}](/assets/images/enterprise/management-console/pages-override-header-section.png) {% data reusables.enterprise_management_console.save-settings %} {% endif %} diff --git a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md index 50dc9731ee..7fa4278d1a 100644 --- a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md +++ b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/enabling-and-scheduling-maintenance-mode.md @@ -35,7 +35,7 @@ Recomendamos que programe una ventana de mantenimiento para, al menos, los sigui ![Mensaje emergente para el usuario final acerca del mantenimiento programado](/assets/images/enterprise/maintenance/maintenance-scheduled.png) -Cuando la instancia está en modo de mantenimiento, se rechazan todos los accesos HTTP y Git. Las operaciones de extracción, clonación y subida de Git también se rechazan con un mensaje de error que indica que temporalmente el sitio no se encuentra disponible. In high availability configurations, Git replication will be paused. No se ejecutarán los jobs de las Github Actions. Al visitar el sitio desde un navegador aparece una página de mantenimiento. +Cuando la instancia está en modo de mantenimiento, se rechazan todos los accesos HTTP y Git. Las operaciones de extracción, clonación y subida de Git también se rechazan con un mensaje de error que indica que temporalmente el sitio no se encuentra disponible. Se pausará la replicación de git en las configuraciones de disponibilidad alta. No se ejecutarán los jobs de las Github Actions. Al visitar el sitio desde un navegador aparece una página de mantenimiento. ![La pantalla de presentación del modo de mantenimiento](/assets/images/enterprise/maintenance/maintenance-mode-maintenance-page.png) diff --git a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md index 396bea1253..745f2cb706 100644 --- a/translations/es-ES/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md +++ b/translations/es-ES/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md @@ -22,7 +22,7 @@ topics: - Security --- -Debes habilitar el modo privado si {% data variables.product.product_location %} es de acceso público por internet. En el modo privado, los usuarios no pueden clonar repositorios en forma anónima por `git://`. Si también está habilitada la autenticación incorporada, un administrador debe invitar a los nuevos usuarios para que creen una cuenta en la instancia. For more information, see "[Configuring built-in authentication](/admin/identity-and-access-management/using-built-in-authentication/configuring-built-in-authentication)." +Debes habilitar el modo privado si {% data variables.product.product_location %} es de acceso público por internet. En el modo privado, los usuarios no pueden clonar repositorios en forma anónima por `git://`. Si también está habilitada la autenticación incorporada, un administrador debe invitar a los nuevos usuarios para que creen una cuenta en la instancia. Para obtener más información, consulta la sección "[Configurar la autenticación incorporada](/admin/identity-and-access-management/using-built-in-authentication/configuring-built-in-authentication)". {% data reusables.enterprise_installation.image-urls-viewable-warning %} diff --git a/translations/es-ES/content/admin/github-actions/advanced-configuration-and-troubleshooting/using-a-staging-environment.md b/translations/es-ES/content/admin/github-actions/advanced-configuration-and-troubleshooting/using-a-staging-environment.md index 8fd99dbd7c..fc4f64430d 100644 --- a/translations/es-ES/content/admin/github-actions/advanced-configuration-and-troubleshooting/using-a-staging-environment.md +++ b/translations/es-ES/content/admin/github-actions/advanced-configuration-and-troubleshooting/using-a-staging-environment.md @@ -1,6 +1,6 @@ --- title: Utilizar un ambiente de montaje -intro: 'Learn about using {% data variables.product.prodname_actions %} with {% data variables.product.prodname_ghe_server %} staging instances.' +intro: 'Aprende sobre cómo utilizar las {% data variables.product.prodname_actions %} con las instancias de pruebas de {% data variables.product.prodname_ghe_server %}.' versions: ghes: '*' type: how_to @@ -11,34 +11,34 @@ topics: - Upgrades redirect_from: - /admin/github-actions/using-a-staging-environment -shortTitle: Use staging environment +shortTitle: Utilizar un ambiente de pruebas --- -## About staging environments for {% data variables.product.product_name %} +## Acerca de los ambientes de pruebas para {% data variables.product.product_name %} Puede ser útil tener un ambiente de montaje o de pruebas para {% data variables.product.product_location %}, para que así puedas probar las actualizaciones o características nuevas antes de implementarlas en tu ambiente productivo. Para obtener más información, consulta "[Configurar una instancia de preparación](/admin/installation/setting-up-a-github-enterprise-server-instance/setting-up-a-staging-instance)." -## Using a staging environment with {% data variables.product.prodname_actions %} +## Utilizar un ambiente de pruebas con {% data variables.product.prodname_actions %} -A common way to create the staging environment is to restore a backup of your production {% data variables.product.product_name %} instance to a new virtual machine in the staging environment. If you use a staging instance and plan to test {% data variables.product.prodname_actions %} functionality, you should review your storage configuration in the staging environment. +Una forma común de crear un ambiente de pruebas es restablecer un respaldo de tu instancia productiva de {% data variables.product.product_name %} a una máquina virtual nueva en dicho ambiente de pruebas. Si utilizas una instancia de pruebas y planeas probar la funcionalidad de {% data variables.product.prodname_actions %}, deberías revisar tu configuración de almacenamiento en el ambiente de pruebas. -After you restore a {% data variables.product.prodname_ghe_server %} backup to the staging instance, if you try to view logs or artifacts from existing {% data variables.product.prodname_actions %} workflow runs on your staging instance, you will see `404` errors, because this data will be missing from your staging storage location. To work around the `404` errors, you can copy data from production to use in your staging environment. +Después de que restableces un respaldo de {% data variables.product.prodname_ghe_server %} en la instancia de pruebas, si intentas ver las bitácoras o artefactos de las ejecuciones de flujo de trabajo existentes de {% data variables.product.prodname_actions %} en tu instancia de pruebas, verás errores `404`, ya que estos datos no se encontrarán en tu ubicación de almacenamiento de pruebas. Para solucionar los errores `404`, puedes copiar los datos de producción para utilizarlos en tu ambiente de pruebas. -### Configuring storage +### Configurar el almacenamiento -When you set up a staging environment that includes a {% data variables.product.product_name %} instance with {% data variables.product.prodname_actions %} enabled, you must use a different external storage configuration for {% data variables.product.prodname_actions %} storage than your production environment. +Cuando configuras un ambiente de pruebas que incluye una instancia de {% data variables.product.product_name %} con {% data variables.product.prodname_actions %} habilitadas, debes utilizar una configuración de almacenamiento externo diferente para el de {% data variables.product.prodname_actions %} que aquél de tu ambiente productivo. {% warning %} -**Warning**: If you don't change the storage configuration, your staging instance may be able to write to the same external storage that you use for production, which could result in loss of data. +**Advertencia**: Si no cambias la configuración de almacenamiento, tu instancia de pruebas podría escribir en el mismo almacenamiento externo que utilizas para producción, lo cual podría hacerte perder datos. {% endwarning %} -For more information about storage configuration for {% data variables.product.prodname_actions %}, see "[Getting started with {% data variables.product.prodname_actions %} for {% data variables.product.prodname_ghe_server %}](/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server#enabling-github-actions-with-your-storage-provider)." +Para obtener más información sobre la configuración de almacenamiento de {% data variables.product.prodname_actions %}, consulta la sección "[Iniciar con {% data variables.product.prodname_actions %} para {% data variables.product.prodname_ghe_server %}](/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-github-actions-for-github-enterprise-server#enabling-github-actions-with-your-storage-provider)". -### Copying files from production to staging +### Copiar los archivos de producción a pruebas -To more accurately mirror your production environment, you can optionally copy files from your production storage location for {% data variables.product.prodname_actions %} to the staging storage location. +Para duplicar tu ambiente productivo con mayor exactitud, opcionalmente, puedes copiar los archivos de tu ubicación de almacenamiento productivo para {% data variables.product.prodname_actions %} a aquella del almacenamiento de pruebas. * Para una cuenta de almacenamiento de Azure, puedes utilizar [`azcopy`](https://docs.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-blobs#copy-all-containers-directories-and-blobs-to-another-storage-account). Por ejemplo: diff --git a/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/introducing-github-actions-to-your-enterprise.md b/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/introducing-github-actions-to-your-enterprise.md index 5e091464c0..640649c67a 100644 --- a/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/introducing-github-actions-to-your-enterprise.md +++ b/translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/introducing-github-actions-to-your-enterprise.md @@ -40,7 +40,7 @@ Then,{% else %}First,{% endif %} decide whether you'll allow third-party actions Considera combinar OpenID Connect (OIDC) con los flujos de trabajo reutilizables para requerir despliegues continuos a lo largo de tu repositorio, organización o empresa. Puedes hacerlo si defines las condiciones de confianza en los roles de la nube con base en los flujos reutilizables. Para obtener más información, consulta la sección "[Utilizar OpenID Connect con flujos de trabajo reutilizables](/actions/deployment/security-hardening-your-deployments/using-openid-connect-with-reusable-workflows)". {% endif %} -Puedes acceder a la información sobre la actividad relacionada con las {% data variables.product.prodname_actions %} en las bitácoras de auditoría de tu empresa. Si tus necesidades de negocio requieren que retengas bitácoras de auditoría por más de seis meses, planea cómo exportarás y almacenarás estos datos fuera de {% data variables.product.prodname_dotcom %}. For more information, see {% ifversion ghec %}"[Streaming the audit log for your enterprise](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/streaming-the-audit-log-for-your-enterprise)" and "[Exporting audit log activity for your enterprise](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/exporting-audit-log-activity-for-your-enterprise)."{% else %}"[Log forwarding](/admin/monitoring-activity-in-your-enterprise/exploring-user-activity/log-forwarding)."{% endif %} +Puedes acceder a la información sobre la actividad relacionada con las {% data variables.product.prodname_actions %} en las bitácoras de auditoría de tu empresa. Si tus necesidades de negocio requieren que retengas bitácoras de auditoría por más de seis meses, planea cómo exportarás y almacenarás estos datos fuera de {% data variables.product.prodname_dotcom %}. Para obtener más información, consulta las secciones {% ifversion ghec %}"[Transmitir la bitácora de auditoría para tu empresa](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/streaming-the-audit-log-for-your-enterprise)" y "[Exportar la actividad de tu bitácora de auditoría para tu empresa](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/exporting-audit-log-activity-for-your-enterprise)".{% else %}"[Reenvío de bitácoras](/admin/monitoring-activity-in-your-enterprise/exploring-user-activity/log-forwarding)".{% endif %} ![Entradas de la bitácora de auditoría](/assets/images/help/repository/audit-log-entries.png) diff --git a/translations/es-ES/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/about-authentication-for-your-enterprise.md b/translations/es-ES/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/about-authentication-for-your-enterprise.md index d674b40fd4..0d06deb67a 100644 --- a/translations/es-ES/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/about-authentication-for-your-enterprise.md +++ b/translations/es-ES/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/about-authentication-for-your-enterprise.md @@ -56,7 +56,7 @@ The following authentication methods are available for {% data variables.product ### Built-in authentication -{% data reusables.enterprise_user_management.built-in-authentication-new-accounts %} To access your instance, people authenticate with the credentials for the account. For more information, see "[Configuring built-in authentication](/admin/identity-and-access-management/using-built-in-authentication/configuring-built-in-authentication)." +{% data reusables.enterprise_user_management.built-in-authentication-new-accounts %} To access your instance, people authenticate with the credentials for the account. Para obtener más información, consulta la sección "[Configurar la autenticación incorporada](/admin/identity-and-access-management/using-built-in-authentication/configuring-built-in-authentication)". ### External authentication diff --git a/translations/es-ES/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/username-considerations-for-external-authentication.md b/translations/es-ES/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/username-considerations-for-external-authentication.md index 21cf2f84a9..06ec268034 100644 --- a/translations/es-ES/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/username-considerations-for-external-authentication.md +++ b/translations/es-ES/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/username-considerations-for-external-authentication.md @@ -40,7 +40,7 @@ If you use an enterprise with {% data variables.product.prodname_emus %}, member Usernames for user accounts on {% ifversion ghes or ghae %}{% data variables.product.product_name %}{% elsif ghec %}{% data variables.product.prodname_dotcom_the_website %}{% endif %} can only contain alphanumeric characters and dashes (`-`). -{% ifversion ghec or ghes %}When you configure {% ifversion ghes %}CAS, LDAP, or {% endif %}SAML authentication, {% endif %}{% data variables.product.product_name %} uses an identifier from the user account on your {% ifversion ghes %}external authentication provider{% elsif ghec or ghae %}IdP{% endif %} to determine the username for the corresponding user account on {% ifversion ghes or ghae %}{% data variables.product.product_name %}{% elsif ghec %}{% data variables.product.prodname_dotcom_the_website %}{% endif %}. If the identifier for the account on your provider includes unsupported characters, {% data variables.product.product_name %} will normalize the username per the following rules. +{% ifversion ghec or ghes %}Cuando configuras la autenticación con {% ifversion ghes %}CAS, LDAP o {% endif %}SAML, {% endif %}{% data variables.product.product_name %} utiliza un identificador desde la cuenta de usuario en tu {% ifversion ghes %}proveedor de autenticación externo{% elsif ghec or ghae %}IdP{% endif %} para determinar el nombre de usuario de la cuenta del usuario correspondiente en {% ifversion ghes or ghae %}{% data variables.product.product_name %}{% elsif ghec %}{% data variables.product.prodname_dotcom_the_website %}{% endif %}. If the identifier for the account on your provider includes unsupported characters, {% data variables.product.product_name %} will normalize the username per the following rules. 1. {% data variables.product.product_name %} will normalize any non-alphanumeric character in your account's username into a dash. For example, a username of `mona.the.octocat` will be normalized to `mona-the-octocat`. Nota que los nombres de usuarios normalizados tampoco pueden comenzar o terminar con una raya. Tampoco pueden contener dos rayas seguidas. diff --git a/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/about-saml-for-enterprise-iam.md b/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/about-saml-for-enterprise-iam.md index f72077e9d0..2b5d60da69 100644 --- a/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/about-saml-for-enterprise-iam.md +++ b/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/about-saml-for-enterprise-iam.md @@ -1,7 +1,7 @@ --- title: About SAML for enterprise IAM shortTitle: About SAML for IAM -intro: 'You can use SAML single sign-on (SSO) {% ifversion ghec or ghae %}and System for Cross-domain Identity Management (SCIM) {% endif %}to centrally manage access {% ifversion ghec %}to organizations owned by your enterprise on {% data variables.product.prodname_dotcom_the_website %}{% elsif ghes %}to {% data variables.product.product_location %}{% elsif ghae %}to {% data variables.product.product_location %}{% endif %}.' +intro: 'Puedes utilizar el inicio de sesión único (SSO) de SAML {% ifversion ghec or ghae %}y el Sistema para la Administración de Identidades entre Dominios (SCIM) {% endif %}para administrar centralmente el acceso {% ifversion ghec %}a las organizaciones que pertenecen a tu empresa de {% data variables.product.prodname_dotcom_the_website %}{% elsif ghes %}a {% data variables.product.product_location %}{% elsif ghae %}a {% data variables.product.product_location %}{% endif %}.' versions: ghec: '*' ghes: '*' diff --git a/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/configuring-saml-single-sign-on-for-your-enterprise.md b/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/configuring-saml-single-sign-on-for-your-enterprise.md index ac41500c23..f182d14b1d 100644 --- a/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/configuring-saml-single-sign-on-for-your-enterprise.md +++ b/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/configuring-saml-single-sign-on-for-your-enterprise.md @@ -1,7 +1,7 @@ --- title: Configurar el inicio de sesión único de SAML para tu empresa shortTitle: Configurar el SSO de SAML -intro: 'You can control and secure access to {% ifversion ghec %}resources like repositories, issues, and pull requests within your enterprise''s organizations{% elsif ghes %}{% data variables.product.product_location %}{% elsif ghae %}your enterprise on {% data variables.product.prodname_ghe_managed %}{% endif %} by {% ifversion ghec %}enforcing{% elsif ghes or ghae %}configuring{% endif %} SAML single sign-on (SSO) through your identity provider (IdP).' +intro: 'Puedes controlar y asegurar el acceso a {% ifversion ghec %}los recursos como repositorios, propuestas y solicitudes de cambio dentro de las organizaciones de tu empresa{% elsif ghes %}{% data variables.product.product_location %}{% elsif ghae %}tu empresa en {% data variables.product.prodname_ghe_managed %}{% endif %} si {% ifversion ghec %}requieres{% elsif ghes or ghae %}configuras{% endif %} el inicio de sesión único (SSO) de SAML mediante tu proveedor de identidad (IdP).' permissions: '{% ifversion ghes %}Site administrators{% elsif ghec or ghae %}Enterprise owners{% endif %} can configure SAML SSO for {% ifversion ghec or ghae %}an enterprise on {% data variables.product.product_name %}{% elsif ghes %}a {% data variables.product.product_name %} instance{% endif %}.' versions: ghec: '*' @@ -65,7 +65,7 @@ Después de autenticarse exitosamente en tu IdP, la sesión de SAML del usuario ## Consideraciones sobre el nombre de usuario con SAML -{% ifversion ghec %}If you use {% data variables.product.prodname_emus %}, {% endif %}{% data reusables.enterprise_user_management.consider-usernames-for-external-authentication %} For more information, see "[Username considerations for external authentication](/admin/identity-and-access-management/managing-iam-for-your-enterprise/username-considerations-for-external-authentication)." +{% ifversion ghec %}Si utilizas {% data variables.product.prodname_emus %}, {% endif %}{% data reusables.enterprise_user_management.consider-usernames-for-external-authentication %} Para obtener más información, consulta la sección "[Consideraciones de nombre de usuario para la autenticación externa](/admin/identity-and-access-management/managing-iam-for-your-enterprise/username-considerations-for-external-authentication)". ## Requerir el inicio de sesión único de SAML para las organizaciones en tu cuenta empresarial diff --git a/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference.md b/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference.md index a0a61d3785..cdac744b56 100644 --- a/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference.md +++ b/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference.md @@ -17,9 +17,9 @@ topics: ## About SAML configuration -To use SAML single sign-on (SSO) for authentication to {% data variables.product.product_name %}, you must configure both your external SAML identity provider (IdP) and {% ifversion ghes %}{% data variables.product.product_location %}{% elsif ghec %}your enterprise or organization on {% data variables.product.product_location %}{% elsif ghae %}your enterprise on {% data variables.product.product_name %}{% endif %}. In a SAML configuration, {% data variables.product.product_name %} functions as a SAML service provider (SP). +Para utilizar el inicio de sesión único (SSO) de SAML para autenticarse en {% data variables.product.product_name %}, debes configurar tanto tu proveedor de identidad (IdP) externo de SAML como {% ifversion ghes %}{% data variables.product.product_location %}{% elsif ghec %}tu empresa u organización en {% data variables.product.product_location %}{% elsif ghae %}tu empresa en {% data variables.product.product_name %}{% endif %}. In a SAML configuration, {% data variables.product.product_name %} functions as a SAML service provider (SP). -You must enter unique values from your SAML IdP when configuring SAML SSO for {% data variables.product.product_name %}, and you must also enter unique values from {% data variables.product.product_name %} on your IdP. For more information about the configuration of SAML SSO for {% data variables.product.product_name %}, see "[Configuring SAML single sign-on for your enterprise](/admin/identity-and-access-management/managing-iam-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise){% ifversion ghes or ghae %}{% elsif ghec %}" or "[Enabling and testing SAML single sign-on for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization){% endif %}." +You must enter unique values from your SAML IdP when configuring SAML SSO for {% data variables.product.product_name %}, and you must also enter unique values from {% data variables.product.product_name %} on your IdP. Para obtener más información sobre la configuración del SSO de SAML para {% data variables.product.product_name %}, consulta la sección "[Configurar el inicio de sesión único de SAML para tu empresa](/admin/identity-and-access-management/managing-iam-for-your-enterprise/configuring-saml-single-sign-on-for-your-enterprise){% ifversion ghes or ghae %}{% elsif ghec %}" o "[Habilitar y probar el inicio de sesión único de SAML para tu organización](/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization){% endif %}". ## Metadatos SAML @@ -82,7 +82,7 @@ The following SAML attributes are available for {% data variables.product.produc {%- ifversion ghes or ghae %} | `administrator` | No | When the value is `true`, {% data variables.product.product_name %} will automatically promote the user to be a {% ifversion ghes %}site administrator{% elsif ghae %}enterprise owner{% endif %}. Any other value or a non-existent value will demote the account and remove administrative access. | | `username` | No | The username for {% data variables.product.product_location %}. | {%- endif %} -| `full_name` | No | {% ifversion ghec %}If you configure SAML SSO for an enterprise and you use {% data variables.product.prodname_emus %}, the{% else %}The{% endif %} full name of the user to display on the user's profile page. | | `emails` | No | The email addresses for the user.{% ifversion ghes or ghae %} You can specify more than one address.{% endif %}{% ifversion ghec or ghes %} If you sync license usage between {% data variables.product.prodname_ghe_server %} and {% data variables.product.prodname_ghe_cloud %}, {% data variables.product.prodname_github_connect %} uses `emails` to identify unique users across products. For more information, see "[Syncing license usage between {% data variables.product.prodname_ghe_server %} and {% data variables.product.prodname_ghe_cloud %}](/billing/managing-your-license-for-github-enterprise/syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud)."{% endif %} | | `public_keys` | No | {% ifversion ghec %}If you configure SAML SSO for an enterprise and you use {% data variables.product.prodname_emus %}, the{% else %}The{% endif %} public SSH keys for the user. You can specify more than one key. | | `gpg_keys` | No | {% ifversion ghec %}If you configure SAML SSO for an enterprise and you use {% data variables.product.prodname_emus %}, the{% else %}The{% endif %} GPG keys for the user. You can specify more than one key. | +| `full_name` | No | {% ifversion ghec %}If you configure SAML SSO for an enterprise and you use {% data variables.product.prodname_emus %}, the{% else %}The{% endif %} full name of the user to display on the user's profile page. | | `emails` | No | Las direcciones de correo electrónico del usuario.{% ifversion ghes or ghae %} Puedes especificar más de una dirección.{% endif %}{% ifversion ghec or ghes %} Si sincronizas el uso de licencias entre {% data variables.product.prodname_ghe_server %} y {% data variables.product.prodname_ghe_cloud %}, {% data variables.product.prodname_github_connect %} utiliza `emails` para identificar a los usuarios únicos entre los productos. Para obtener más información, consulta la sección "[Sincronizar el uso de licencias entre {% data variables.product.prodname_ghe_server %} y {% data variables.product.prodname_ghe_cloud %}](/billing/managing-your-license-for-github-enterprise/syncing-license-usage-between-github-enterprise-server-and-github-enterprise-cloud)".{% endif %} | | `public_keys` | No | {% ifversion ghec %}Si configuras el SSO de SAML para una empresa y utilizas {% data variables.product.prodname_emus %}, las{% else %}Las{% endif %}llaves SSH públicas para el usuario. You can specify more than one key. | | `gpg_keys` | No | {% ifversion ghec %}If you configure SAML SSO for an enterprise and you use {% data variables.product.prodname_emus %}, the{% else %}The{% endif %} GPG keys for the user. You can specify more than one key. | Para especificar más de un valor para un atributo, utiliza elementos múltiples de ``. @@ -98,7 +98,7 @@ Para especificar más de un valor para un atributo, utiliza elementos múltiples {% data variables.product.product_name %} requires that the response message from your IdP fulfill the following requirements. - Your IdP must provide the `` element on the root response document and match the ACS URL only when the root response document is signed. If your IdP signs the assertion, {% data variables.product.product_name %} will ignore the assertion. -- Your IdP must always provide the `` element as part of the `` element. The value must match your `EntityId` for {% data variables.product.product_name %}.{% ifversion ghes or ghae %} This value is the URL where you access {% data variables.product.product_location %}, such as {% ifversion ghes %}`http(s)://HOSTNAME`{% elsif ghae %}`https://SUBDOMAIN.githubenterprise.com`, `https://SUBDOMAIN.github.us`, or `https://SUBDOMAIN.ghe.com`{% endif %}.{% endif %} +- Your IdP must always provide the `` element as part of the `` element. El valor debe empatar con tu `EntityId` para {% data variables.product.product_name %}.{% ifversion ghes or ghae %} Este valor es la URL en donde accedes a {% data variables.product.product_location %}, tal como {% ifversion ghes %}`http(s)://HOSTNAME`{% elsif ghae %}`https://SUBDOMAIN.githubenterprise.com`, `https://SUBDOMAIN.github.us` o `https://SUBDOMAIN.ghe.com`{% endif %}.{% endif %} {%- ifversion ghec %} - If you configure SAML for an organization, this value is `https://github.com/orgs/ORGANIZATION`. diff --git a/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/updating-a-users-saml-nameid.md b/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/updating-a-users-saml-nameid.md index 7c6e3e213c..6c1ce6e02e 100644 --- a/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/updating-a-users-saml-nameid.md +++ b/translations/es-ES/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/updating-a-users-saml-nameid.md @@ -1,7 +1,7 @@ --- title: Updating a user's SAML NameID shortTitle: Update SAML NameID -intro: 'When an account''s `NameID` changes on your identity provider (IdP) and the person can no longer {% ifversion ghes or ghae %}sign into {% data variables.product.product_location %}{% elsif ghec %}authenticate to access your enterprise''s resources{% endif %}, you must {% ifversion ghec %}either contact {% data variables.product.company_short %} Support or revoke the person''s linked identity{% elsif ghes %}update the `NameID` mapping on {% data variables.product.product_location %}{% elsif ghae %}contact {% data variables.product.company_short %} Support{% endif %}.' +intro: 'Cuando el `NameID` de una cuenta cambia en tu proveedor de identidad (IdP) y la persona ya no puede {% ifversion ghes or ghae %}iniciar sesión en {% data variables.product.product_location %}{% elsif ghec %}autenticarse para acceder a los recursos de tu empresa{% endif %}, debes {% ifversion ghec %}ya sea contactar al soporte de {% data variables.product.company_short %} o revocar la identidad vinculada de la persona{% elsif ghes %}actualizar el mapeo de la `NameID` en {% data variables.product.product_location %}{% elsif ghae %}contactar al soporte de {% data variables.product.company_short %}{% endif %}.' versions: ghes: '*' type: how_to diff --git a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md index 3c745b204f..a228eb663c 100644 --- a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md +++ b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md @@ -56,8 +56,8 @@ Las AMIs para {% data variables.product.prodname_ghe_server %} se encuentran dis ### Utilizar el portal {% data variables.product.prodname_ghe_server %} para seleccionar una AMI {% data reusables.enterprise_installation.download-appliance %} -3. Under "{% data variables.product.prodname_dotcom %} in the Cloud", select the "Select your platform" dropdown menu, and click **Amazon Web Services**. -4. Select the "Select your AWS region" drop-down menu, and click your desired region. +3. Debajo de "{% data variables.product.prodname_dotcom %} en la nube", selecciona el menú desplegable "Selecciona tu plataforma" y haz clic en **Amazon Web Services**. +4. Selecciona el menú desplegable "Selecciona tu región de AWS" y haz clic en tu región deseada. 5. Toma nota de la ID de AMI que se muestra. ### Utilizar la CLI de AWS para seleccionar una AMI diff --git a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md index 740df26a8d..348714294a 100644 --- a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md +++ b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-hyper-v.md @@ -30,7 +30,7 @@ shortTitle: Instalar en Hyper-V {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. Under "{% data variables.product.prodname_dotcom %} On-premises", select the "Select your hypervisor" dropdown menu and click **Hyper-V (VHD)**. +4. Debajo de "{% data variables.product.prodname_dotcom %} en las instalacioens", selecciona el menú desplegable "Selecciona tu hipervisor" y haz clic en **Hyper-V (VHD)**. 5. Haz clic en **Download for Hyper-V (VHD) (Descarga para Hyper-V (VHD))**. ## Crear la instancia {% data variables.product.prodname_ghe_server %} diff --git a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md index fe474278b5..6668f0074b 100644 --- a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md +++ b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-openstack-kvm.md @@ -29,7 +29,7 @@ shortTitle: Instalar en OpenStack {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. Under "{% data variables.product.prodname_dotcom %} On-premises", select the "Select your hypervisor" dropdown menu and click **OpenStack KVM (QCOW2)**. +4. Debajo de "{% data variables.product.prodname_dotcom %} en las instalaciones"; selecciona el menú desplegable "Selecciona tu hipervisor" y haz clic en **OpenStack KVM (QCOW2)**. 5. Haz clic en **Download for OpenStack KVM (QCOW2) (Descargar para OpenStack KVM (QCOW2))**. ## Crear la instancia {% data variables.product.prodname_ghe_server %} diff --git a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md index f8a29bcda6..5455fafebf 100644 --- a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md +++ b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-vmware.md @@ -33,7 +33,7 @@ shortTitle: Instalar en VMware {% data reusables.enterprise_installation.download-license %} {% data reusables.enterprise_installation.download-appliance %} -4. Under "{% data variables.product.prodname_dotcom %} On-premises", select the "Select your hypervisor" dropdown menu and click **VMware ESXi/vSphere (OVA)**. +4. Debajo de "{% data variables.product.prodname_dotcom %} en las instalaciones", selecciona el menú desplegable de "Selecciona tu hipervisor" y haz clic en **VMware ESXi/vSphere (OVA)**. 5. Haz clic en **Download for VMware ESXi/vSphere (OVA) (Descargar para VMware ESXi/vSphere (OVA))**. ## Crear la instancia {% data variables.product.prodname_ghe_server %} diff --git a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/setting-up-a-staging-instance.md b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/setting-up-a-staging-instance.md index 74ee3f99b2..cb69ed520e 100644 --- a/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/setting-up-a-staging-instance.md +++ b/translations/es-ES/content/admin/installation/setting-up-a-github-enterprise-server-instance/setting-up-a-staging-instance.md @@ -14,23 +14,23 @@ topics: shortTitle: Configurar una instancia de pruebas --- -## About staging instances +## Acerca de las instancias de prueba -{% data variables.product.company_short %} recommends that you set up a separate environment to test backups, updates, or changes to the configuration for {% data variables.product.product_location %}. This environment, which you should isolate from your production systems, is called a staging environment. +{% data variables.product.company_short %} recomienda que configures un ambiente separado para probar los respaldos, actualziaciones o cambios a la configuración de {% data variables.product.product_location %}. Este ambiente, el cual debes aislar de tus sistemas productivos, se denomina ambiente de pruebas. -For example, to protect against loss of data, you can regularly validate the backup of your production instance. You can regularly restore the backup of your production data to a separate {% data variables.product.product_name %} instance in a staging environment. On this staging instance, you could also test the upgrade to the latest feature release of {% data variables.product.product_name %}. +Por ejemplo, para protegerte contra una pérdida de datos, puedes validar el respaldo de tu instancia productiva frecuentemente. Puedes restablecer el respaldo de tus datos productivos con frecuencia hacia una instancia separada de {% data variables.product.product_name %} en un ambiente de pruebas. En esta instancia de pruebas, también puedes probar la mejora lanzamiento de características más reciente de {% data variables.product.product_name %}. {% tip %} -**Tip:** You may reuse your existing {% data variables.product.prodname_enterprise %} license file as long as the staging instance is not used in a production capacity. +**Tip:** Puedes reutilizar tu archivo de licencia existente de {% data variables.product.prodname_enterprise %} siempre y cuando la instancia de pruebas no se utilice en una capacidad de producción. {% endtip %} -## Considerations for a staging environment +## Consideraciones para un ambiente de pruebas -To thoroughly test {% data variables.product.product_name %} and recreate an environment that's as similar to your production environment as possible, consider the external systems that interact with your instance. For example, you may want to test the following in your staging environment. +Para probar {% data variables.product.product_name %} exhaustivamente y recrear un ambiente que sea tan similar a tu ambiente de pruebas como sea posible, considera los sistemas externos que interactúan con tu instancia. Por ejemplo, podrías querer probar lo siguiente en tu ambiente de pruebas. -- Authentication, especially if you use an external authentication provider like SAML +- La autenticación, especialmente si utilizas un proveedor de autenticación externo como SAML - La integración con un sistema externo de vales - La integración con un servidor de integración continua - Los scripts externos o el software que usan {% data variables.product.prodname_enterprise_api %} @@ -40,7 +40,7 @@ To thoroughly test {% data variables.product.product_name %} and recreate an env 1. Realiza una copia de seguridad de tu instancia de producción utilizando {% data variables.product.prodname_enterprise_backup_utilities %}. Para obtener más información, consulta la sección "Acerca de {% data variables.product.prodname_enterprise_backup_utilities %}" en "[Configurar copias de seguridad en tu aparato](/enterprise/admin/guides/installation/configuring-backups-on-your-appliance#about-github-enterprise-server-backup-utilities)." 2. Configura una nueva instancia para que actúe como tu entorno de preparación. Puedes utilizar las mismas guías para aprovisionar e instalar tu instancia de preparación como hiciste para tu instancia de producción. Para obtener más información, consulta "[Configurar una instancia del {% data variables.product.prodname_ghe_server %}](/enterprise/admin/guides/installation/setting-up-a-github-enterprise-server-instance/)." -3. Optionally, if you plan to test {% data variables.product.prodname_actions %} functionality in your test environment, review the considerations for your logs and storage. For more information, see "[Using a staging environment](/admin/github-actions/advanced-configuration-and-troubleshooting/using-a-staging-environment)." +3. Opcionalmente, si planeas probar la funcionalidad de {% data variables.product.prodname_actions %} en tu ambiente de pruebas, revisa las consideraciones para tus bitácoras y almacenamiento. Para obtener más información, consulta la sección "[Utilizar un ambiente de pruebas](/admin/github-actions/advanced-configuration-and-troubleshooting/using-a-staging-environment)". 4. Restaura tu copia de seguridad a tu instancia de preparación. Para obtener más información, consulta la sección "Restaurar una copia de seguridad" en "[Configurar copias de seguridad en tu aparato](/enterprise/admin/guides/installation/configuring-backups-on-your-appliance#restoring-a-backup)." ## Leer más diff --git a/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/about-the-audit-log-for-your-enterprise.md b/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/about-the-audit-log-for-your-enterprise.md index ea7cb5818d..41613cb015 100644 --- a/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/about-the-audit-log-for-your-enterprise.md +++ b/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/about-the-audit-log-for-your-enterprise.md @@ -35,7 +35,7 @@ In addition to viewing your audit log, you can monitor activity in your enterpri As an enterprise owner{% ifversion ghes %} or site administrator{% endif %}, you can interact with the audit log data for your enterprise in several ways: - You can view the audit log for your enterprise. For more information, see "[Accessing the audit log for your enterprise](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/accessing-the-audit-log-for-your-enterprise)." -- You can search the audit log for specific events{% ifversion ghec %} and export audit log data{% endif %}. For more information, see "[Searching the audit log for your enterprise](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/searching-the-audit-log-for-your-enterprise)"{% ifversion ghec %} and "[Exporting the audit log for your enterprise](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/exporting-audit-log-activity-for-your-enterprise)"{% endif %}. +- You can search the audit log for specific events{% ifversion ghec %} and export audit log data{% endif %}. Para obtener más información, consulta las secciones "[Buscar la bitácora de auditoría para tu empresa](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/searching-the-audit-log-for-your-enterprise)"{% ifversion ghec %} y "[Exportar la bitácora de auditoría para tu empresa](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/exporting-audit-log-activity-for-your-enterprise)"{% endif %}. {%- ifversion ghec %} - Puedes trasmitir datos de eventos de Git y de auditorías desde {% data variables.product.prodname_dotcom %} hacia un sistema externo de administración de datos. For more information, see "[Streaming the audit log for your enterprise](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/streaming-the-audit-log-for-your-enterprise)." {%- else %} diff --git a/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise.md b/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise.md index a1a634564f..cdaa38b8c7 100644 --- a/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise.md +++ b/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise.md @@ -1,7 +1,7 @@ --- -title: Audit log events for your enterprise -intro: Learn about audit log events recorded for your enterprise. -shortTitle: Audit log events +title: Eventos de bitácora de auditoría para tu empresa +intro: Aprende sobre los eventos de bitácora de auditoría que se registran para tu empresa. +shortTitle: Eventos de bitácora de auditoría permissions: 'Enterprise owners {% ifversion ghes %}and site administrators {% endif %}can interact with the audit log.' miniTocMaxHeadingLevel: 4 redirect_from: @@ -25,40 +25,40 @@ topics: {%- ifversion fpt or ghec %} ### Acciones de la categoría `account` -| Acción | Descripción | -| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `account.billing_plan_change` | An organization's billing cycle changed. For more information, see "[Changing the duration of your billing cycle](/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle)." | -| `account.plan_change` | An organization's subscription changed. For more information, see "[About billing for GitHub accounts](/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts)." | -| `account.pending_plan_change` | An organization owner or billing manager canceled or downgraded a paid subscription. Para obtener más información, consulta "[¿Cómo afecta subir o bajar de categoría el proceso de facturación?](/billing/managing-billing-for-your-github-account/how-does-upgrading-or-downgrading-affect-the-billing-process)." | -| `account.pending_subscription_change` | A {% data variables.product.prodname_marketplace %} free trial started or expired. For more information, see "[About billing for GitHub Marketplace](/billing/managing-billing-for-github-marketplace-apps/about-billing-for-github-marketplace)." | +| Acción | Descripción | +| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `account.billing_plan_change` | Cambió el ciclo de facturación de una organización. Para más información, ve a "[Cambiando la duración de tu ciclo de facturación](/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle)". | +| `account.plan_change` | Cambió la suscripción de una organización. Para obtener más información, consulta la sección "[Acerca de la facturación para las cuentas de GitHub](/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts)". | +| `account.pending_plan_change` | Un propietario de organización o gerente de facturación canceló una suscripción de pago o la bajó de nivel. Para obtener más información, consulta "[¿Cómo afecta subir o bajar de categoría el proceso de facturación?](/billing/managing-billing-for-your-github-account/how-does-upgrading-or-downgrading-affect-the-billing-process)." | +| `account.pending_subscription_change` | Una prueba gratuita de {% data variables.product.prodname_marketplace %} inició o venció. Para obtener más información, consulta la sección "[Acerca de la facturación para GitHub Marketplace](/billing/managing-billing-for-github-marketplace-apps/about-billing-for-github-marketplace)". | {%- endif %} {%- ifversion fpt or ghec %} ### Acciones de la categoría `advisory_credit` -| Acción | Descripción | -| ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `advisory_credit.accept` | Someone accepted credit for a security advisory. Para obtener más información, consulta la sección "[Editar una asesoría de seguridad](/github/managing-security-vulnerabilities/editing-a-security-advisory)". | -| `advisory_credit.create` | The administrator of a security advisory added someone to the credit section. | -| `advisory_credit.decline` | Someone declined credit for a security advisory. | -| `advisory_credit.destroy` | The administrator of a security advisory removed someone from the credit section. | +| Acción | Descripción | +| ------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `advisory_credit.accept` | Alguien aceptó crédito para una asesoría de seguridad. Para obtener más información, consulta la sección "[Editar una asesoría de seguridad](/github/managing-security-vulnerabilities/editing-a-security-advisory)". | +| `advisory_credit.create` | El administrador de una asesoría de seguridad agregó a alguien a la sección de crédito. | +| `advisory_credit.decline` | Alguien declinó crédito para una asesoría de seguridad. | +| `advisory_credit.destroy` | El administrador de una asesoría de seguridad eliminó a alguien de la sección de crédito. | {%- endif %} -### `artifact` category actions +### Acciones de la categoría `artifact` -| Acción | Descripción | -| ------------------ | --------------------------------------------- | -| `artifact.destroy` | A workflow run artifact was manually deleted. | +| Acción | Descripción | +| ------------------ | ------------------------------------------------------------------- | +| `artifact.destroy` | Un artefacto de ejecución de flujo de trabajo se borró manualmente. | {%- ifversion ghec %} -### `audit_log_streaming` category actions +### Acciones de la categoría `audit_log_streaming` -| Acción | Descripción | -| ----------------------------- | ------------------------------------------------------------------------------------------------------------------- | -| `audit_log_streaming.check` | A manual check was performed of the endpoint configured for audit log streaming. | -| `audit_log_streaming.create` | An endpoint was added for audit log streaming. | -| `audit_log_streaming.update` | An endpoint configuration was updated for audit log streaming, such as the stream was paused, enabled, or disabled. | -| `audit_log_streaming.destroy` | An audit log streaming endpoint was deleted. | +| Acción | Descripción | +| ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | +| `audit_log_streaming.check` | Se llevó a cabo una verificación manual de la termina configurada para la transmisión de bitácoras de auditoría. | +| `audit_log_streaming.create` | Se agregó una terminal para la transmisión de bitácoras de auditoría. | +| `audit_log_streaming.update` | Se actualizó una configuración de terminal para la transmisión de bitácoras de auditoría. Se pudo haber pausado, habilitado o inhabilitado. | +| `audit_log_streaming.destroy` | Se borró una terminal de transmisión de de bitácoras de auditoría. | {%- endif %} {%- ifversion fpt or ghec %} @@ -123,7 +123,7 @@ topics: {%- endif %} | `business.set_actions_retention_limit` | The retention period for {% data variables.product.prodname_actions %} artifacts and logs was changed for an enterprise. For more information, see "[Enforcing policies for {% data variables.product.prodname_actions %} in an enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-artifact-and-log-retention-in-your-enterprise)." {%- ifversion ghec or ghes %} -| `business.set_fork_pr_workflows_policy` | The policy for workflows on private repository forks was changed. For more information, see "{% ifversion ghec %}[Enforcing policies for {% data variables.product.prodname_actions %} in an enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-fork-pull-requests-in-private-repositories){% else ifversion ghes > 2.22 %}[Enabling workflows for private repository forks](/admin/github-actions/enabling-github-actions-for-github-enterprise-server/enforcing-github-actions-policies-for-your-enterprise#enabling-workflows-for-private-repository-forks){% endif %}." +| `business.set_fork_pr_workflows_policy` | The policy for workflows on private repository forks was changed. Para obtener más información, consulta la sección "{% ifversion ghec %}[Requerir políticas para las {% data variables.product.prodname_actions %} en una empresa](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-fork-pull-requests-in-private-repositories){% else ifversion ghes > 2.22 %}[Habilitar los flujos de trabajo para las bifurcaciones de repositorios privados](/admin/github-actions/enabling-github-actions-for-github-enterprise-server/enforcing-github-actions-policies-for-your-enterprise#enabling-workflows-for-private-repository-forks){% endif %}". {%- endif %} {%- ifversion ghes %} | `business.update_actions_settings` | An enterprise owner or site administrator updated {% data variables.product.prodname_actions %} policy settings for an enterprise. For more information, see "[Enforcing policies for GitHub Actions in your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise)." @@ -520,9 +520,9 @@ topics: ### `members_can_view_dependency_insights` category actions -| Acción | Descripción | -| ---------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `members_can_view_dependency_insights.clear` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} cleared the policy setting for viewing dependency insights in any organizations in an enterprise.{% ifversion ghec %} For more information, see "[Enforcing a policy for visibility of dependency insights](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise)."{% endif %} +| Acción | Descripción | +| ---------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `members_can_view_dependency_insights.clear` | Un propietario de empresa{% ifversion ghes %} o administrador de sitio{% endif %} libró el ajuste de la política para ver las perspectivas de la dependencia en cualquier organización dentro de una empresa.{% ifversion ghec %} Para obtener más información, consulta la sección "[Requerir una política para la visibilidad de las perspectivas de las dependencias](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise)".{% endif %} | `members_can_view_dependency_insights.disable` | The ability for enterprise members to view dependency insights was disabled. Members cannot view dependency insights in any organizations in an enterprise.{% ifversion ghec %} For more information, see "[Enforcing a policy for visibility of dependency insights](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise)."{% endif %} | `members_can_view_dependency_insights.enable` | The ability for enterprise members to view dependency insights was enabled. Members can view dependency insights in any organizations in an enterprise.{% ifversion ghec %} For more information, see "[Enforcing a policy for visibility of dependency insights](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise)."{% endif %} @@ -588,11 +588,11 @@ topics: {%- ifversion ghec %} | `org.audit_log_export` | An organization owner created an export of the organization audit log. Si la exportación incluía una consulta, el registro detallará la consulta utilizada y la cantidad de entradas en el registro de auditoría que coinciden con esa consulta. For more information, see "[Exporting audit log activity for your enterprise](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/exporting-audit-log-activity-for-your-enterprise)." {%- endif %} -| `org.block_user` | An organization owner blocked a user from accessing the organization's repositories. |{% ifversion fpt or ghec %}For more information, see "[Blocking a user from your organization](/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization)."{% endif %}| | `org.cancel_business_invitation` | An invitation for an organization to join an enterprise was revoked. |{% ifversion ghec %}For more information, see "[Inviting an organization to join your enterprise account](/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account)."{% endif %}| | `org.cancel_invitation` | An invitation sent to a user to join an organization was revoked. | `org.clear_actions_settings` | An organization owner cleared {% data variables.product.prodname_actions %} policy settings for an organization. For more information, see "[Managing GitHub Actions permissions for your organization](/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#managing-github-actions-permissions-for-your-organization)." | `org.clear_default_repository_permission` | An organization owner cleared the base repository permission policy setting for an organization. For more information, see "[Setting base permissions](/organizations/managing-access-to-your-organizations-repositories/setting-base-permissions-for-an-organization#setting-base-permissions)." | `org.clear_member_team_creation_permission` | An organization owner cleared the new teams creation setting for an organization. Para obtener más información, consulta "[Configurar los permisos de creación de equipo en tu organización](/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization)." | `org.clear_reader_discussion_creation_permission` | An organization owner cleared the new discussion creation setting for an organization. |{% ifversion fpt or ghec %}For more information, see "[Allowing or disallowing users with read access to create discussions](/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization)."{% endif %}| | `org.clear_members_can_create_repos` | An organization owner cleared a restriction on repository creation in an organization. Para obtener más información, consulta "[Restringir la creación de repositorios en tu organización](/organizations/managing-organization-settings/restricting-repository-creation-in-your-organization)". | `org.clear_members_can_invite_outside_collaborators` | An organization owner cleared the outside collaborators invitation policy for an organization. Para obtener más información, consulta la sección "[Establecer permisos para agregar colaboradores externos](/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators)". | `org.clear_new_repository_default_branch_setting` | An organization owner cleared the default branch name for new repositories setting for an organization. For more information, see "[Setting the default branch name](/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization#setting-the-default-branch-name)." +| `org.block_user` | An organization owner blocked a user from accessing the organization's repositories. |{% ifversion fpt or ghec %}For more information, see "[Blocking a user from your organization](/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization)."{% endif %}| | `org.cancel_business_invitation` | An invitation for an organization to join an enterprise was revoked. |{% ifversion ghec %}Para obtener más información, consulta la sección "[Invitar a una organización para que se una a tu cuenta empresarial](/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account)."{% endif %}| | `org.cancel_invitation` | Se revocó una invitación que se envió a un usuario para que se una a una organización. | `org.clear_actions_settings` | An organization owner cleared {% data variables.product.prodname_actions %} policy settings for an organization. For more information, see "[Managing GitHub Actions permissions for your organization](/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#managing-github-actions-permissions-for-your-organization)." | `org.clear_default_repository_permission` | An organization owner cleared the base repository permission policy setting for an organization. For more information, see "[Setting base permissions](/organizations/managing-access-to-your-organizations-repositories/setting-base-permissions-for-an-organization#setting-base-permissions)." | `org.clear_member_team_creation_permission` | An organization owner cleared the new teams creation setting for an organization. Para obtener más información, consulta "[Configurar los permisos de creación de equipo en tu organización](/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization)." | `org.clear_reader_discussion_creation_permission` | An organization owner cleared the new discussion creation setting for an organization. |{% ifversion fpt or ghec %}Para obtener más información, consulta la sección "[Permitir o dejar de permitir que los usuarios con acceso de lectura creen debates](/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization)."{% endif %}| | `org.clear_members_can_create_repos` | Un propietario de organización libró una restricción de creación de repositorios en una organización. Para obtener más información, consulta "[Restringir la creación de repositorios en tu organización](/organizations/managing-organization-settings/restricting-repository-creation-in-your-organization)". | `org.clear_members_can_invite_outside_collaborators` | An organization owner cleared the outside collaborators invitation policy for an organization. Para obtener más información, consulta la sección "[Establecer permisos para agregar colaboradores externos](/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators)". | `org.clear_new_repository_default_branch_setting` | An organization owner cleared the default branch name for new repositories setting for an organization. For more information, see "[Setting the default branch name](/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization#setting-the-default-branch-name)." {%- ifversion fpt or ghec %} | `org.codespaces_trusted_repo_access_granted` | {% data variables.product.prodname_codespaces %} was granted trusted repository access to all other repositories in an organization. Para obtener más información, consulta la sección "[Administrar el acceso de un repositorio a los codespces de tu organización](/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces)". | `org.codespaces_trusted_repo_access_revoked` | {% data variables.product.prodname_codespaces %} trusted repository access to all other repositories in an organization was revoked. Para obtener más información, consulta la sección "[Administrar el acceso de un repositorio a los codespces de tu organización](/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces)". {%- endif %} -| `org.config.disable_collaborators_only` | The interaction limit for collaborators only for an organization was disabled. |{% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.disable_contributors_only` | The interaction limit for prior contributors only for an organization was disabled. |{% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.disable_sockpuppet_disallowed` | The interaction limit for existing users only for an organization was disabled. |{% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.enable_collaborators_only` | The interaction limit for collaborators only for an organization was enabled. |{% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.enable_contributors_only` | The interaction limit for prior contributors only for an organization was enabled. |{% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.enable_sockpuppet_disallowed` | The interaction limit for existing users only for an organization was enabled. |{% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.confirm_business_invitation` | An invitation for an organization to join an enterprise was confirmed. |{% ifversion ghec %}For more information, see "[Inviting an organization to join your enterprise account](/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account)."{% endif %}| | `org.create` | An organization was created. Para obtener más información, consulta la sección "[Crear una organización nueva desde cero](/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch)". +| `org.config.disable_collaborators_only` | The interaction limit for collaborators only for an organization was disabled. |{% ifversion fpt or ghec %}Para obtener más información, consulta la sección "[Limitar las interaciones en tu organización](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.disable_contributors_only` | Se inhabilitó el límite de interacción para los contribuyentes previos únicamente para una organización. |{% ifversion fpt or ghec %}Para obtener más información, consulta la sección "[Limitar las interacciones en tu organización](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.disable_sockpuppet_disallowed` | Se inhabilitó el límite de interacciones para los usuarios existentes únicamente para una organización. |{% ifversion fpt or ghec %}Para obtener más información, consulta la sección "[Limitar las interaciones en tu organización](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.enable_collaborators_only` | Se habilitó el límite de interacción para los colaboradores únicamente para una organización. |{% ifversion fpt or ghec %}Para obtener más información, consulta la sección "[Limitar las interaciones en tu organización](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.enable_contributors_only` | Se habilitó el límite de interacción para los contribuyentes previos únicamente para una organización. |{% ifversion fpt or ghec %}Para obtener más información, consulta la sección "[Limitar las interacciones en tu organización](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.enable_sockpuppet_disallowed` | Se habilitó el límite de interacción para los usuarios existentes únicamente para una organización. |{% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.confirm_business_invitation` | An invitation for an organization to join an enterprise was confirmed. |{% ifversion ghec %}For more information, see "[Inviting an organization to join your enterprise account](/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account)."{% endif %}| | `org.create` | An organization was created. Para obtener más información, consulta la sección "[Crear una organización nueva desde cero](/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch)". {%- ifversion fpt or ghec or ghes %} | `org.create_actions_secret` | A {% data variables.product.prodname_actions %} secret was created for an organization. Para obtener más información, consulta la sección "[Crear secretos cifrados para una organización](/actions/reference/encrypted-secrets#creating-encrypted-secrets-for-an-organization)". {%- endif %} @@ -620,7 +620,7 @@ topics: {%- ifversion fpt or ghec %} | `org.oauth_app_access_approved` | An owner [granted organization access to an {% data variables.product.prodname_oauth_app %}](/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization). | `org.oauth_app_access_denied` | An owner [disabled a previously approved {% data variables.product.prodname_oauth_app %}'s access](/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization) to an organization. | `org.oauth_app_access_requested` | An organization member requested that an owner grant an {% data variables.product.prodname_oauth_app %} access to an organization. {%- endif %} -| `org.recreate` | An organization was restored. | `org.register_self_hosted_runner` | A new self-hosted runner was registered. Para obtener más información, consulta la sección "[Agregar un ejecutor auto-hospedado a una organización](/actions/hosting-your-own-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-an-organization)". | `org.remove_actions_secret` | A {% data variables.product.prodname_actions %} secret was removed. | `org.remove_integration_secret` | A {% data variables.product.prodname_dependabot %}{% ifversion fpt or ghec %} or {% data variables.product.prodname_codespaces %}{% endif %} integration secret was removed from an organization. | `org.remove_billing_manager` | An owner removed a billing manager from an organization. |{% ifversion fpt or ghec %}Para obtener más información, consulta la sección "[Eliminar a un gerente de factguración de tu organización](/organizations/managing-peoples-access-to-your-organization-with-roles/removing-a-billing-manager-from-your-organization)"{% endif %}{% ifversion not ghae %} o cuando se requiera [la autenticación bifactorial en una organización](/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization) y un gerente de facturación no haya usado la 2FA o la haya inhabilitado.{% endif %}| | `org.remove_member` | Un [propietario eliminó a un miembro de una organización](/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization){% ifversion not ghae %} o cuando [two-factor authentication was required in an organization](/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization) un miembro de la organización no utiliza 2FA o la inhabilita{% endif %}. Also an [organization member removed themselves](/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/removing-yourself-from-an-organization) from an organization. | `org.remove_outside_collaborator` | An owner removed an outside collaborator from an organization{% ifversion not ghae %} or when [two-factor authentication was required in an organization](/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization) and an outside collaborator didn't use 2FA or disabled 2FA{% endif %}. | `org.remove_self_hosted_runner` | A self-hosted runner was removed. Para obtener más información, consulta la sección "[Eliminar a un ejecutor de una organización](/actions/hosting-your-own-runners/removing-self-hosted-runners#removing-a-runner-from-an-organization)". | `org.rename` | An organization was renamed. | `org.restore_member` | An organization member was restored. For more information, see "[Reinstating a former member of your organization](/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization)." +| `org.recreate` | An organization was restored. | `org.register_self_hosted_runner` | A new self-hosted runner was registered. Para obtener más información, consulta la sección "[Agregar un ejecutor auto-hospedado a una organización](/actions/hosting-your-own-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-an-organization)". | `org.remove_actions_secret` | A {% data variables.product.prodname_actions %} secret was removed. | `org.remove_integration_secret` | A {% data variables.product.prodname_dependabot %}{% ifversion fpt or ghec %} or {% data variables.product.prodname_codespaces %}{% endif %} integration secret was removed from an organization. | `org.remove_billing_manager` | An owner removed a billing manager from an organization. |{% ifversion fpt or ghec %}Para obtener más información, consulta la sección "[Eliminar a un gerente de factguración de tu organización](/organizations/managing-peoples-access-to-your-organization-with-roles/removing-a-billing-manager-from-your-organization)"{% endif %}{% ifversion not ghae %} o cuando se requiera [la autenticación bifactorial en una organización](/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization) y un gerente de facturación no haya usado la 2FA o la haya inhabilitado.{% endif %}| | `org.remove_member` | Un [propietario eliminó a un miembro de una organización](/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization){% ifversion not ghae %} o cuando [two-factor authentication was required in an organization](/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization) un miembro de la organización no utiliza 2FA o la inhabilita{% endif %}. Also an [organization member removed themselves](/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/removing-yourself-from-an-organization) from an organization. | `org.remove_outside_collaborator` | Un propietario eliminó a un colaborador externo de una organización{% ifversion not ghae %} o cuando [se requirió la autenticación bifactorial en una organización](/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization) y un colaborador externo no la utilizó o la inhabilitó{% endif %}. | `org.remove_self_hosted_runner` | A self-hosted runner was removed. Para obtener más información, consulta la sección "[Eliminar a un ejecutor de una organización](/actions/hosting-your-own-runners/removing-self-hosted-runners#removing-a-runner-from-an-organization)". | `org.rename` | An organization was renamed. | `org.restore_member` | An organization member was restored. For more information, see "[Reinstating a former member of your organization](/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization)." {%- ifversion ghec %} | `org.revoke_external_identity` | An organization owner revoked a member's linked identity. Para obtener más información, consulta la sección "[Visualizar y administrar el acceso de SAML de un miembro a tu organización](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization#viewing-and-revoking-a-linked-identity)". | `org.revoke_sso_session` | An organization owner revoked a member's SAML session. Para obtener más información, consulta la sección "[Visualizar y administrar el acceso de SAML de un miembro a tu organización](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization#viewing-and-revoking-a-linked-identity)". {%- endif %} @@ -775,7 +775,7 @@ topics: | `pre_receive_hook.destroy` | A pre-receive hook was deleted. For more information, see "[Deleting pre-receive hooks](/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance#deleting-pre-receive-hooks)." | | `pre_receive_hook.enforcement` | A pre-receive hook enforcement setting allowing repository and organization administrators to override the hook configuration was enabled or disabled. For more information, see "[Managing pre-receive hooks on the GitHub Enterprise Server appliance](/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance)." | | `pre_receive_hook.rejected_push` | A pre-receive hook rejected a push. | -| `pre_receive_hook.update` | A pre-receive hook was created. For more information, see "[Editing pre-receive hooks](/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance#editing-pre-receive-hooks)." | +| `pre_receive_hook.update` | Se creó un gancho de pre-recepción. For more information, see "[Editing pre-receive hooks](/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance#editing-pre-receive-hooks)." | | `pre_receive_hook.warned_push` | A pre-receive hook warned about a push. | {%- endif %} @@ -878,7 +878,7 @@ topics: | Acción | Descripción | | ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `pull_request_review.delete` | A review on a pull request was deleted. | +| `pull_request_review.delete` | Se borró una revisión en una solicitud de cambios. | | `pull_request_review.dismiss` | A review on a pull request was dismissed. Para obtener más información, consulta "[Descartar una revisión de solicitud de extracción](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review)". | | `pull_request_review.submit` | A review on a pull request was submitted. For more information, see "[Submitting your review](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request#submitting-your-review)." | @@ -1008,11 +1008,11 @@ topics: {%- endif %} ### `repository_visibility_change` category actions -| Acción | Descripción | -| -------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `repository_visibility_change.clear` | The repository visibility change setting was cleared for an organization or enterprise. For more information, see "[Restricting repository visibility changes in your organization](/organizations/managing-organization-settings/restricting-repository-visibility-changes-in-your-organization)" and "[Enforcing a policy for changes to repository visibility](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-changes-to-repository-visibility) for an enterprise." | -| `repository_visibility_change.disable` | The ability for enterprise members to update a repository's visibility was disabled. Members are unable to change repository visibilities in an organization, or all organizations in an enterprise. | -| `repository_visibility_change.enable` | The ability for enterprise members to update a repository's visibility was enabled. Members are able to change repository visibilities in an organization, or all organizations in an enterprise. | +| Acción | Descripción | +| -------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `repository_visibility_change.clear` | The repository visibility change setting was cleared for an organization or enterprise. Para obtener más información, consulta las secciones "[restringir los cambios de visibilidad de los repositorios en tu organización](/organizations/managing-organization-settings/restricting-repository-visibility-changes-in-your-organization)" y "[requerir una política para los cambios en la visibilidad de un repositorio](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-changes-to-repository-visibility) para una empresa". | +| `repository_visibility_change.disable` | The ability for enterprise members to update a repository's visibility was disabled. Members are unable to change repository visibilities in an organization, or all organizations in an enterprise. | +| `repository_visibility_change.enable` | The ability for enterprise members to update a repository's visibility was enabled. Members are able to change repository visibilities in an organization, or all organizations in an enterprise. | {%- ifversion fpt or ghec or ghes or ghae-issue-4864 %} ### acciones de la categoría `repository_vulnerability_alert` @@ -1044,10 +1044,10 @@ topics: {%- ifversion ghec or ghes > 3.1 %} ### `restrict_notification_delivery` category actions -| Acción | Descripción | -| ---------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `restrict_notification_delivery.enable` | Email notification restrictions for an organization or enterprise were enabled. For more information, see "[Restricting email notifications for your organization](/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization)" and "[Restricting email notifications for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise)." | -| `restrict_notification_delivery.disable` | Email notification restrictions for an organization or enterprise were disabled. For more information, see "[Restricting email notifications for your organization](/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization)" and "[Restricting email notifications for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise)." | +| Acción | Descripción | +| ---------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `restrict_notification_delivery.enable` | Email notification restrictions for an organization or enterprise were enabled. Para obtener más información, consulta las secciones "[Restringir las notificaciones de correo electrónico de tu organización](/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization)" y "[Restringir las notificaciones de correo electrónico para tu empresa](/admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise)". | +| `restrict_notification_delivery.disable` | Email notification restrictions for an organization or enterprise were disabled. Para obtener más información, consulta las secciones "[Restringir las notificaciones de correo electrónico de tu organización](/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization)" y "[Restringir las notificaciones de correo electrónico para tu empresa](/admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise)". | {%- endif %} {%- ifversion ghec or ghes > 3.4 or ghae-issue-6271 %} @@ -1114,17 +1114,17 @@ topics: {%- ifversion ghec or ghes or ghae %} ### `ssh_certificate_authority` category actions -| Acción | Descripción | -| ----------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `ssh_certificate_authority.create` | An SSH certificate authority for an organization or enterprise was created. For more information, see "[Managing your organization's SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" and "[Managing SSH certificate authorities for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)." | -| `ssh_certificate_authority.destroy` | An SSH certificate authority for an organization or enterprise was deleted. For more information, see "[Managing your organization's SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" and "[Managing SSH certificate authorities for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)." | +| Acción | Descripción | +| ----------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| `ssh_certificate_authority.create` | An SSH certificate authority for an organization or enterprise was created. Para obtener más información, consulta las secciones "[Administrar las autoridades de certificados SSH de tu organización](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" y "[Administrar las autoridades de certificados SSH para tu empresa](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)". | +| `ssh_certificate_authority.destroy` | An SSH certificate authority for an organization or enterprise was deleted. Para obtener más información, consulta las secciones "[Administrar las autoridades de certificados SSH de tu organización](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" y "[Administrar las autoridades de certificados SSH para tu empresa](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)". | ### `ssh_certificate_requirement` category actions -| Acción | Descripción | -| ------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ssh_certificate_requirement.enable` | The requirement for members to use SSH certificates to access an organization resources was enabled. For more information, see "[Managing your organization's SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" and "[Managing SSH certificate authorities for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)." | -| `ssh_certificate_requirement.disable` | The requirement for members to use SSH certificates to access an organization resources was disabled. For more information, see "[Managing your organization's SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" and "[Managing SSH certificate authorities for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)." | +| Acción | Descripción | +| ------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `ssh_certificate_requirement.enable` | The requirement for members to use SSH certificates to access an organization resources was enabled. Para obtener más información, consulta las secciones "[Administrar las autoridades de certificados SSH de tu organización](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" y "[Administrar las autoridades de certificados SSH para tu empresa](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)". | +| `ssh_certificate_requirement.disable` | The requirement for members to use SSH certificates to access an organization resources was disabled. Para obtener más información, consulta las secciones "[Administrar las autoridades de certificados SSH de tu organización](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" y "[Administrar las autoridades de certificados SSH para tu empresa](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)". | {%- endif %} ### `staff` category actions @@ -1140,11 +1140,11 @@ topics: {%- ifversion ghes %} | `staff.search_audit_log` | A site administrator performed a search of the site admin audit log. {%- endif %} -| `staff.set_domain_token_expiration` | {% ifversion ghes %}A site administrator or {% endif %}GitHub staff set the verification code expiry time for an organization or enterprise domain. {% ifversion ghec or ghes > 3.1 %}For more information, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)" and "[Verifying or approving a domain for your enterprise](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)."{% endif %} +| `staff.set_domain_token_expiration` | {% ifversion ghes %}A site administrator or {% endif %}GitHub staff set the verification code expiry time for an organization or enterprise domain. {% ifversion ghec or ghes > 3.1 %}Para obtener más información, consulta las secciones "[Verificar o aprobar un dominio para tu organización](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)" y "[Verificar o aprobar un dominio para tu empresa](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)".{% endif %} {%- ifversion ghes %} | `staff.unlock` | A site administrator unlocked (temporarily gained full access to) all of a user's private repositories. {%- endif %} -| `staff.unverify_domain` | |{% ifversion ghes %}A site administrator or {% endif %}GitHub staff unverified an organization or enterprise domain. {% ifversion ghec or ghes > 3.1 %}For more information, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)" and "[Verifying or approving a domain for your enterprise](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)."{% endif %}| | `staff.verify_domain` | {% ifversion ghes %}A site administrator or {% endif %}GitHub staff verified an organization or enterprise domain. {% ifversion ghec or ghes > 3.1 %}For more information, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)" and "[Verifying or approving a domain for your enterprise](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)."{% endif %} +| `staff.unverify_domain` | |{% ifversion ghes %}A site administrator or {% endif %}GitHub staff unverified an organization or enterprise domain. {% ifversion ghec or ghes > 3.1 %}Para obtener más información, consulta la sección "[Verificar o aprobar un dominio para tu organización](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)" y "[Verificar o aprobar un dominio para tu empresa](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)".{% endif %}| | `staff.verify_domain` | {% ifversion ghes %}Un administrador de sitio o {% endif %}el personal de GitHub verificó un dominio de empresa u organización. {% ifversion ghec or ghes > 3.1 %}Para obtener más información, consulta las secciones "[Verificar o aprobar un dominio para tu organización](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)" y "[Verificar o aprobar un dominio para tu empresa](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)".{% endif %} {%- ifversion ghes %} | `staff.view_audit_log` | A site administrator viewed the site admin audit log. {%- endif %} @@ -1176,24 +1176,24 @@ topics: {%- ifversion ghec %} ### `team_sync_tenant` category actions -| Acción | Descripción | -| ------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `team_sync_tenant.disabled` | Team synchronization with a tenant was disabled. For more information, see "[Managing team synchronization for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization)" and "[Managing team synchronization for organizations in your enterprise](/admin/identity-and-access-management/managing-iam-for-your-enterprise/managing-team-synchronization-for-organizations-in-your-enterprise)." | -| `team_sync_tenant.enabled` | Team synchronization with a tenant was enabled. For more information, see "[Managing team synchronization for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization)" and "[Managing team synchronization for organizations in your enterprise](/admin/identity-and-access-management/managing-iam-for-your-enterprise/managing-team-synchronization-for-organizations-in-your-enterprise)." | -| `team_sync_tenant.update_okta_credentials` | The Okta credentials for team synchronization with a tenant were changed. | +| Acción | Descripción | +| ------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `team_sync_tenant.disabled` | Team synchronization with a tenant was disabled. Para obtener más información, consulta las secciones "[Administrar la sincronización de equipos para tu organización](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization)" y "[Administrar la sincronización de equipos para las organizaciones en tu empresa](/admin/identity-and-access-management/managing-iam-for-your-enterprise/managing-team-synchronization-for-organizations-in-your-enterprise)". | +| `team_sync_tenant.enabled` | Team synchronization with a tenant was enabled. Para obtener más información, consulta las secciones "[Administrar la sincronización de equipos para tu organización](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization)" y "[Administrar la sincronización de equipos para las organizaciones en tu empresa](/admin/identity-and-access-management/managing-iam-for-your-enterprise/managing-team-synchronization-for-organizations-in-your-enterprise)". | +| `team_sync_tenant.update_okta_credentials` | The Okta credentials for team synchronization with a tenant were changed. | {%- endif %} {%- ifversion fpt or ghes %} ### acciones de la categoría `two_factor_authentication` -| Acción | Descripción | -| ------------------------------------------------------- | -------------------------------------------------------------------------- | -| `two_factor_authentication.disabled` | [Two-factor authentication][2fa] was disabled for a user account. | -| `two_factor_authentication.enabled` | [Two-factor authentication][2fa] was enabled for a user account. | -| `two_factor_authentication.password_reset_fallback_sms` | A one-time password code was sent to a user account fallback phone number. | -| `two_factor_authentication.recovery_codes_regenerated` | Two factor recovery codes were regenerated for a user account. | -| `two_factor_authentication.sign_in_fallback_sms` | A one-time password code was sent to a user account fallback phone number. | -| `two_factor_authentication.update_fallback` | The two-factor authentication fallback for a user account was changed. | +| Acción | Descripción | +| ------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | +| `two_factor_authentication.disabled` | [Two-factor authentication][2fa] was disabled for a user account. | +| `two_factor_authentication.enabled` | [Two-factor authentication][2fa] was enabled for a user account. | +| `two_factor_authentication.password_reset_fallback_sms` | A one-time password code was sent to a user account fallback phone number. | +| `two_factor_authentication.recovery_codes_regenerated` | Two factor recovery codes were regenerated for a user account. | +| `two_factor_authentication.sign_in_fallback_sms` | El código de contraseña de una sola vez se envió al número telefónico de opción alternativa de una cuenta de usuario. | +| `two_factor_authentication.update_fallback` | The two-factor authentication fallback for a user account was changed. | {%- endif %} {%- ifversion fpt or ghes or ghae %} diff --git a/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/exporting-audit-log-activity-for-your-enterprise.md b/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/exporting-audit-log-activity-for-your-enterprise.md index 570ce2cb4a..aee14df5f7 100644 --- a/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/exporting-audit-log-activity-for-your-enterprise.md +++ b/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/exporting-audit-log-activity-for-your-enterprise.md @@ -21,7 +21,7 @@ You can export Git events data by downloading a JSON file from your enterprise a {% data reusables.audit_log.exported-log-keys-and-values %} -As an alternative to exporting log events, you can use the API to retrieve audit log events, or set up {% data variables.product.product_name %} to stream audit data as events are logged. For more information, see "[Using the audit log API for your enterprise](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/using-the-audit-log-api-for-your-enterprise)" and "[Streaming the audit log for your enterprise](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/streaming-the-audit-log-for-your-enterprise)." +As an alternative to exporting log events, you can use the API to retrieve audit log events, or set up {% data variables.product.product_name %} to stream audit data as events are logged. Para obtener más información, consulta las secciones "[Utilizar la API de bitácora de auditoría para tu empresa](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/using-the-audit-log-api-for-your-enterprise)" y "[Transmitir la bitácora de auditoría para tu empresa](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/streaming-the-audit-log-for-your-enterprise)". ## Exporting audit log data diff --git a/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/using-the-audit-log-api-for-your-enterprise.md b/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/using-the-audit-log-api-for-your-enterprise.md index 01a631bb98..9bcc13ec7c 100644 --- a/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/using-the-audit-log-api-for-your-enterprise.md +++ b/translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/using-the-audit-log-api-for-your-enterprise.md @@ -28,7 +28,7 @@ Timestamps and date fields in the API response are measured in [UTC epoch millis To ensure your intellectual property is secure, and you maintain compliance for your enterprise, you can use the audit log GraphQL API to keep copies of your audit log data and monitor: {% data reusables.audit_log.audit-log-api-info %} -Note that you can't retrieve Git events using the {% ifversion not ghec %}audit log API.{% else %}GraphQL API. Para recuperar eventos de Git, utiliza mejor la API de REST. For more information, see `git` category actions in "[Audit log actions for your enterprise](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise#git-category-actions)", and also the "[Enterprise administration](/rest/reference/enterprise-admin#audit-log)" and "[Organizations](/rest/reference/orgs#get-the-audit-log-for-an-organization) audit log endpoints in the REST API documentation."{% endif %} +Note that you can't retrieve Git events using the {% ifversion not ghec %}audit log API.{% else %}GraphQL API. Para recuperar eventos de Git, utiliza mejor la API de REST. Para obtener más información, consulta las acciones de la categoría `git` en la sección "[Acciones de bitácora de auditoría para tu empresa](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise#git-category-actions)" y también las terminales de bitácoras de auditoría de [Administración de empresas](/rest/reference/enterprise-admin#audit-log)" y "[Organizaciones](/rest/reference/orgs#get-the-audit-log-for-an-organization) en la documentación de la API de REST".{% endif %} La respuesta de GraphQL puede incluir datos de hasta 90 a 120 días. diff --git a/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise.md b/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise.md index 1c93519f2c..06c2e134e8 100644 --- a/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise.md +++ b/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise.md @@ -69,7 +69,7 @@ Puedes elegir inhabilitar {% data variables.product.prodname_actions %} para tod {%- elsif ghes or ghae-issue-5094 %} ![Add actions to the allow list](/assets/images/help/organizations/enterprise-actions-policy-allow-list.png) {%- elsif ghae %} - ![Add actions to the allow list](/assets/images/enterprise/github-ae/enterprise-actions-policy-allow-list.png) + ![Agregar acciones a la lista de elementos permitidos](/assets/images/enterprise/github-ae/enterprise-actions-policy-allow-list.png) {%- endif %} ## Requerir una política para la retención de bitácoras y artefactos en tu empresa diff --git a/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md b/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md index 80803337cf..60f5482cdf 100644 --- a/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md +++ b/translations/es-ES/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise.md @@ -115,7 +115,7 @@ En todas las organizaciones que pertenezcan a tu empresa, puedes permitir o proh ## Requerir una política para invitar colaboradores{% ifversion ghec %} externos{% endif %} a los repositorios -Across all organizations owned by your enterprise, you can allow members to invite{% ifversion ghec %} outside{% endif %} collaborators to repositories, restrict {% ifversion ghec %}outside collaborator {% endif %}invitations to organization owners, {% if prevent-org-admin-add-outside-collaborator %}restrict {% ifversion ghec %}outside collaborator {% endif %}invitations to enterprise owners, {% endif %}or allow organization owners to administer the setting on the organization level. +En todas las organizaciones que pertenezcan a tu empresa, puedes permitir que los miembros inviten colaboradores{% ifversion ghec %} externos{% endif %} a los repositorios, restrinjan las invitaciones a los {% ifversion ghec %}colaboradores externos{% endif %} a los propietarios de las organizaciones, {% if prevent-org-admin-add-outside-collaborator %}restrinjan las invitaciones a los {% ifversion ghec %}colaboradores externos {% endif %}a los propietarios de las empresas, {% endif %}o permitan que los propietarios de las organizaciones administren la configuración a nivel organizacional. {% data reusables.enterprise-accounts.access-enterprise %} {% data reusables.enterprise-accounts.policies-tab %} diff --git a/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md b/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md index 95644968fa..e5b6eeb59d 100644 --- a/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md +++ b/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md @@ -61,10 +61,10 @@ shortTitle: Administración de proyectos con Jira 5. En el modal **Add New Account** (Agregar nueva cuenta), completa tus parámetros de {% data variables.product.prodname_enterprise %}: - Desde el menú desplegable de **Host**, elige **{% data variables.product.prodname_enterprise %}**. - - In the **Team or User Account** field, type the name of your {% data variables.product.prodname_enterprise %} organization or user account. + - En el campo de **Cuenta de usuario o equipo**, teclea el nombre de tu cuenta de usuario o de organización de {% data variables.product.prodname_enterprise %}. - En el campo **OAuth Key** (Clave OAuth), escribe el ID de cliente de tu aplicación de programador de {% data variables.product.prodname_enterprise %}. - En el campo **OAuth Secret** (OAuth secreto), escribe el secreto de cliente para tu aplicación de programador de {% data variables.product.prodname_enterprise %}. - - If you don't want to link new repositories owned by your {% data variables.product.prodname_enterprise %} organization or user account, deselect **Auto Link New Repositories**. + - Si no quieres enlazar los repositorios nuevos que pertenecen a tu cuenta de usuario o de organización de {% data variables.product.prodname_enterprise %}, deselecciona **Autoenlazar los repositorios nuevos**. - Si no quieres habilitar las confirmaciones inteligentes, deselecciona **Habilitar las confirmaciones inteligentes**. - Da clic en **Agregar**. 6. Revisa los permisos que concedes a tu cuenta de {% data variables.product.prodname_enterprise %} y haz clic en **Authorize application** (Autorizar aplicación). diff --git a/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md b/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md index 6c0cfa0e10..28650e3e2d 100644 --- a/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md +++ b/translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md @@ -24,7 +24,7 @@ You can choose to join an organization owned by your enterprise as a member or a {% warning %} -**Warning**: If an organization uses SCIM to provision users, joining the organization this way could have unintended consequences. For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +**Warning**: If an organization uses SCIM to provision users, joining the organization this way could have unintended consequences. Para obtener más información, consulta la sección "[SCIM para las organizaciones](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)". {% endwarning %} diff --git a/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md b/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md index 2ad50130d6..74dfd451b6 100644 --- a/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md +++ b/translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise.md @@ -72,7 +72,7 @@ Los mensajes obligatorios tienen varios usos. Si incluyes cajas de verificación con lenguaje de marcado en el mensaje, todas ellas deberán seleccionarse antes de que el usuario pueda descartar el mensaje. Por ejemplo, si incluyes tus condiciones de servicio en el mensaje obligatorio, puede que necesites que cada usuario seleccione una casilla para confirmar que leyó dichas condiciones. -Cada vez que un usuario vea un mensaje obligatorio, se crea un evento de bitácora de auditoría. El evento incluye la versión del mensaje que vio el usuario. For more information see "[Audit log events for your enterprise](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise)." +Cada vez que un usuario vea un mensaje obligatorio, se crea un evento de bitácora de auditoría. El evento incluye la versión del mensaje que vio el usuario. Para obtener más información, consulta la sección "[Eventos de bitácora de auditoría para tu empressa](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise)". {% note %} diff --git a/translations/es-ES/content/billing/managing-billing-for-github-actions/viewing-your-github-actions-usage.md b/translations/es-ES/content/billing/managing-billing-for-github-actions/viewing-your-github-actions-usage.md index c6de6cc888..efe9963c2b 100644 --- a/translations/es-ES/content/billing/managing-billing-for-github-actions/viewing-your-github-actions-usage.md +++ b/translations/es-ES/content/billing/managing-billing-for-github-actions/viewing-your-github-actions-usage.md @@ -18,9 +18,9 @@ shortTitle: Visualizar el uso de tus acciones También puedes ver los minutos de ejecución facturables para los jobs en una ejecución de flujo de trabajo individual. Para obtener más información, consulta la sección "[Visualizar el tiempo de ejecución del job](/actions/managing-workflow-runs/viewing-job-execution-time)". -## Viewing {% data variables.product.prodname_actions %} usage for your personal account +## Ver el uso de las {% data variables.product.prodname_actions %} en tu cuenta personal -Anyone can view {% data variables.product.prodname_actions %} usage for their own personal account. +Cualquiera puede ver el uso de las {% data variables.product.prodname_actions %} en su propia cuenta personal. {% data reusables.user-settings.access_settings %} {% data reusables.user-settings.billing_plans %} diff --git a/translations/es-ES/content/billing/managing-billing-for-github-packages/managing-your-spending-limit-for-github-packages.md b/translations/es-ES/content/billing/managing-billing-for-github-packages/managing-your-spending-limit-for-github-packages.md index 28edead6f7..3dac871ade 100644 --- a/translations/es-ES/content/billing/managing-billing-for-github-packages/managing-your-spending-limit-for-github-packages.md +++ b/translations/es-ES/content/billing/managing-billing-for-github-packages/managing-your-spending-limit-for-github-packages.md @@ -34,9 +34,9 @@ Tan pronto como configures un límite de gastos diferente a $0, serás responsab Ya que no has habilitado los excedentes, tu siguiente intento de publicar una versión del paquete no será exitosa. No recibirás una cuenta por esos 0.1GB extras en ese mes. Sin embargo, si habilitas los excedentes, tu primer factura incluirá el excedente de 0.1GB del ciclo de facturación actual, así como cualquier otro excedente que acumules. -## Managing the spending limit for {% data variables.product.prodname_registry %} for your personal account +## Administrar el límite de gastos del {% data variables.product.prodname_registry %} en tu cuenta personal -Anyone can manage the spending limit for {% data variables.product.prodname_registry %} for their own personal account. +Cualquiera puede administrar el límite de gastos del {% data variables.product.prodname_registry %} en su propia cuenta personal. {% data reusables.user-settings.access_settings %} {% data reusables.user-settings.billing_plans %} diff --git a/translations/es-ES/content/billing/managing-billing-for-your-github-account/about-per-user-pricing.md b/translations/es-ES/content/billing/managing-billing-for-your-github-account/about-per-user-pricing.md index 016826b034..a195e296e6 100644 --- a/translations/es-ES/content/billing/managing-billing-for-your-github-account/about-per-user-pricing.md +++ b/translations/es-ES/content/billing/managing-billing-for-your-github-account/about-per-user-pricing.md @@ -54,7 +54,7 @@ Puedes agregar más usuarios a tu organización{% ifversion ghec %} o empresa en Si tienes dudas sobre tu suscripción, contacta al{% data variables.contact.contact_support %}. -To further support your team's collaboration abilities, you can upgrade to {% data variables.product.prodname_ghe_cloud %}, which includes features like SAML single sign-on and advanced auditing. {% data reusables.enterprise.link-to-ghec-trial %} +Para seguir apoyando las capacidades de colaboración de tu equipo, puedes mejorar a {% data variables.product.prodname_ghe_cloud %}, lo cual incluye características como el inicio de sesión único de SAML y la auditoría avanzada. {% data reusables.enterprise.link-to-ghec-trial %} Para obtener más información sobre los precios por usuario para {% data variables.product.prodname_ghe_cloud %}, consulta [la documentación de {% data variables.product.prodname_ghe_cloud %}](/enterprise-cloud@latest/billing/managing-billing-for-your-github-account/about-per-user-pricing). diff --git a/translations/es-ES/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md b/translations/es-ES/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md index b93c5abf46..127f9e9fc5 100644 --- a/translations/es-ES/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md +++ b/translations/es-ES/content/billing/managing-billing-for-your-github-account/downgrading-your-github-subscription.md @@ -31,7 +31,7 @@ shortTitle: Bajar una suscripción de categoría ## Bajar de nivel tu suscripción de {% data variables.product.product_name %} -When you downgrade your personal account or organization's subscription, pricing and account feature changes take effect on your next billing date. Changes to your paid personal account or organization subscription does not affect subscriptions or payments for other paid {% data variables.product.prodname_dotcom %} features. Para obtener más información, consulta "[¿Cómo afecta subir o bajar de categoría el proceso de facturación?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)." +Cuando bajas de nivel tu suscripción de cuenta personal o de organización, los precios y características cambian y toman efecto en tu siguiente fecha de facturación. Changes to your paid personal account or organization subscription does not affect subscriptions or payments for other paid {% data variables.product.prodname_dotcom %} features. Para obtener más información, consulta "[¿Cómo afecta subir o bajar de categoría el proceso de facturación?](/articles/how-does-upgrading-or-downgrading-affect-the-billing-process)." ## Downgrading your personal account's subscription diff --git a/translations/es-ES/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md b/translations/es-ES/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md index 2003d771e9..2f80811762 100644 --- a/translations/es-ES/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md +++ b/translations/es-ES/content/billing/setting-up-paid-organizations-for-procurement-companies/about-organizations-for-procurement-companies.md @@ -15,7 +15,7 @@ topics: shortTitle: Acerca de las organizaciones --- -To access an organization, each member must sign into their own personal account. +Para acceder a una organización, cada miembro debe iniciar sesión en su propia cuenta personal. Los miembros de la organización pueden tener diferentes roles, como *propietario* o *gerente de facturación*: diff --git a/translations/es-ES/content/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates.md b/translations/es-ES/content/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates.md index 9d8e974cca..a4a8a05086 100644 --- a/translations/es-ES/content/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates.md +++ b/translations/es-ES/content/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates.md @@ -63,7 +63,7 @@ Si no se habilitan las actualizaciones de seguridad para tu repositorio y no sab Puedes habilitar o inhabilitar las {% data variables.product.prodname_dependabot_security_updates %} para un repositorio individual (ver a continuación). -You can also enable or disable {% data variables.product.prodname_dependabot_security_updates %} for all repositories owned by your personal account or organization. For more information, see "[Managing security and analysis settings for your personal account](/github/setting-up-and-managing-your-github-user-account/managing-security-and-analysis-settings-for-your-user-account)" or "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)." +You can also enable or disable {% data variables.product.prodname_dependabot_security_updates %} for all repositories owned by your personal account or organization. Para obtener más información, consulta la sección "[Administrar los ajustes de seguridad y análisis de tu cuenta personal](/github/setting-up-and-managing-your-github-user-account/managing-security-and-analysis-settings-for-your-user-account)" o "[Administrar los ajustes de seguridad y análisis para tu organización](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)". Las {% data variables.product.prodname_dependabot_security_updates %} requieren de configuraciones de repositorio específicas. Para obtener más información, consulta "[Repositorios soportados](#supported-repositories)". diff --git a/translations/es-ES/content/code-security/getting-started/adding-a-security-policy-to-your-repository.md b/translations/es-ES/content/code-security/getting-started/adding-a-security-policy-to-your-repository.md index 7e79e2ee04..45b78019e0 100644 --- a/translations/es-ES/content/code-security/getting-started/adding-a-security-policy-to-your-repository.md +++ b/translations/es-ES/content/code-security/getting-started/adding-a-security-policy-to-your-repository.md @@ -25,7 +25,7 @@ Para otorgar instrucciones a las personas sobre cómo reportar las vulnerabilida {% ifversion not ghae %} -You can create a default security policy for your organization or personal account. Para obtener más información, consulta "[Crear un archivo de salud predeterminado para la comunidad](/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file)." +Puedes crear una política de seguridad predeterminada para tu cuenta personal o de organización. Para obtener más información, consulta "[Crear un archivo de salud predeterminado para la comunidad](/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file)." {% endif %} {% tip %} diff --git a/translations/es-ES/content/code-security/secret-scanning/protecting-pushes-with-secret-scanning.md b/translations/es-ES/content/code-security/secret-scanning/protecting-pushes-with-secret-scanning.md index e9b13eef02..59cc2bede0 100644 --- a/translations/es-ES/content/code-security/secret-scanning/protecting-pushes-with-secret-scanning.md +++ b/translations/es-ES/content/code-security/secret-scanning/protecting-pushes-with-secret-scanning.md @@ -30,7 +30,7 @@ Up to now, {% data variables.product.prodname_secret_scanning_GHAS %} checks for ## Enabling {% data variables.product.prodname_secret_scanning %} as a push protection -For you to use {% data variables.product.prodname_secret_scanning %} as a push protection, the organization or repository needs to have both {% data variables.product.prodname_GH_advanced_security %} and {% data variables.product.prodname_secret_scanning %} enabled. For more information, see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)," "[Managing security and analysis settings for your repository](/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository)," and "[About {% data variables.product.prodname_GH_advanced_security %}](/get-started/learning-about-github/about-github-advanced-security)." +For you to use {% data variables.product.prodname_secret_scanning %} as a push protection, the organization or repository needs to have both {% data variables.product.prodname_GH_advanced_security %} and {% data variables.product.prodname_secret_scanning %} enabled. Para obtener más información, consulta las secciones "[Administrar los ajustes de seguridad y análisis de tu organización](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)", "[Administrar los ajustes de seguridad y análisis de tu repositorio](/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository)" y "[Acerca de la {% data variables.product.prodname_GH_advanced_security %}](/get-started/learning-about-github/about-github-advanced-security)". Organization owners, security managers, and repository administrators can enable push protection for {% data variables.product.prodname_secret_scanning %} via the UI and API. For more information, see "[Repositories](/rest/reference/repos#update-a-repository)" and expand the "Properties of the `security_and_analysis` object" section in the REST API documentation. diff --git a/translations/es-ES/content/code-security/security-overview/about-the-security-overview.md b/translations/es-ES/content/code-security/security-overview/about-the-security-overview.md index 9e96974725..7255974a57 100644 --- a/translations/es-ES/content/code-security/security-overview/about-the-security-overview.md +++ b/translations/es-ES/content/code-security/security-overview/about-the-security-overview.md @@ -28,7 +28,7 @@ shortTitle: Acerca del resumen de seguridad ## Acerca del resumen de seguridad -{% ifversion ghes or ghec or ghae %}You{% elsif fpt %}Organizations that use {% data variables.product.prodname_ghe_cloud %}{% endif %} can use the security overview for a high-level view of the security status of {% ifversion ghes or ghec or ghae %}your {% elsif fpt %}their{% endif %} organization or to identify problematic repositories that require intervention. {% ifversion ghes or ghec or ghae %}You {% elsif fpt %}These organizations{% endif %} can view aggregate or repository-specific security information in the security overview. {% ifversion ghes or ghec or ghae %}You {% elsif fpt %} Organizations that use {% data variables.product.prodname_ghe_cloud %}{% endif %} can also use the security overview to see which security features are enabled for {% ifversion ghes or ghec or ghae %}your {% elsif fpt %}their {% endif %} repositories and to configure any available security features that are not currently in use. {% ifversion fpt %}For more information, see [the {% data variables.product.prodname_ghe_cloud %} documentation](/enterprise-cloud@latest/code-security/security-overview/about-the-security-overview).{% endif %} +{% ifversion ghes or ghec or ghae %}You{% elsif fpt %}Organizations that use {% data variables.product.prodname_ghe_cloud %}{% endif %} can use the security overview for a high-level view of the security status of {% ifversion ghes or ghec or ghae %}your {% elsif fpt %}their{% endif %} organization or to identify problematic repositories that require intervention. {% ifversion ghes or ghec or ghae %}You {% elsif fpt %}These organizations{% endif %} can view aggregate or repository-specific security information in the security overview. {% ifversion ghes or ghec or ghae %}También puedes {% elsif fpt %} Las organizaciones que utilizan {% data variables.product.prodname_ghe_cloud %} también pueden{% endif %} utilizar el resumen de seguridad para ver qué características de seguridad se habilitaron para {% ifversion ghes or ghec or ghae %}tus {% elsif fpt %}sus {% endif %} repositorios y para configurar cualquier característica de seguridad disponible que no se esté utilizando actualmente. {% ifversion fpt %}For more information, see [the {% data variables.product.prodname_ghe_cloud %} documentation](/enterprise-cloud@latest/code-security/security-overview/about-the-security-overview).{% endif %} {% ifversion ghec or ghes or ghae %} El resumen de seguridad indica si están habilitadas las características de {% ifversion fpt or ghes > 3.1 or ghec %}seguridad{% endif %}{% ifversion ghae %}{% data variables.product.prodname_GH_advanced_security %}{% endif %} para los repositorios que pertenecen a tu organización y consolida las alertas para cada característica.{% ifversion fpt or ghes > 3.1 or ghec %} Las características de seguridad incluyen características de la {% data variables.product.prodname_GH_advanced_security %}, tales como el {% data variables.product.prodname_code_scanning %} y el {% data variables.product.prodname_secret_scanning %}, tanto como las {% data variables.product.prodname_dependabot_alerts %}.{% endif %} Para obtener más información sobre las características de la {% data variables.product.prodname_GH_advanced_security %}, consulta la sección "[Acerca de la {% data variables.product.prodname_GH_advanced_security %}](/get-started/learning-about-github/about-github-advanced-security)".{% ifversion fpt or ghes > 3.1 or ghec %} Para obtener más información sobre las {% data variables.product.prodname_dependabot_alerts %}, consulta la sección "[Acerca de las {% data variables.product.prodname_dependabot_alerts %}](/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/about-alerts-for-vulnerable-dependencies#dependabot-alerts-for-vulnerable-dependencies)".{% endif %} diff --git a/translations/es-ES/content/code-security/supply-chain-security/end-to-end-supply-chain/securing-accounts.md b/translations/es-ES/content/code-security/supply-chain-security/end-to-end-supply-chain/securing-accounts.md index a6b4faf180..55a499e3c7 100644 --- a/translations/es-ES/content/code-security/supply-chain-security/end-to-end-supply-chain/securing-accounts.md +++ b/translations/es-ES/content/code-security/supply-chain-security/end-to-end-supply-chain/securing-accounts.md @@ -35,7 +35,7 @@ You can configure SAML authentication for an enterprise or organization account. After you configure SAML authentication, when members request access to your resources, they'll be directed to your SSO flow to ensure they are still recognized by your IdP. If they are unrecognized, their request is declined. -Some IdPs support a protocol called SCIM, which can automatically provision or deprovision access on {% data variables.product.product_name %} when you make changes on your IdP. With SCIM, you can simplify administration as your team grows, and you can quickly revoke access to accounts. SCIM is available for individual organizations on {% data variables.product.product_name %}, or for enterprises that use {% data variables.product.prodname_emus %}. For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +Some IdPs support a protocol called SCIM, which can automatically provision or deprovision access on {% data variables.product.product_name %} when you make changes on your IdP. With SCIM, you can simplify administration as your team grows, and you can quickly revoke access to accounts. SCIM is available for individual organizations on {% data variables.product.product_name %}, or for enterprises that use {% data variables.product.prodname_emus %}. Para obtener más información, consulta la sección "[SCIM para las organizaciones](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)". {% endif %} {% ifversion ghes %} diff --git a/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md b/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md index 6cbb18c5af..409595d281 100644 --- a/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md +++ b/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md @@ -54,7 +54,7 @@ For public repositories, only public repositories that depend on it or on packag You can use the dependency graph to: -- Explore the repositories your code depends on{% ifversion fpt or ghec %}, and those that depend on it{% endif %}. For more information, see "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)." {% ifversion fpt or ghec %} +- Explore the repositories your code depends on{% ifversion fpt or ghec %}, and those that depend on it{% endif %}. For more information, see "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)." {% ifversion ghec %} - View a summary of the dependencies used in your organization's repositories in a single dashboard. For more information, see "[Viewing insights for your organization](/articles/viewing-insights-for-your-organization#viewing-organization-dependency-insights)."{% endif %} - View and update vulnerable dependencies for your repository. For more information, see "[About {% data variables.product.prodname_dependabot_alerts %}](/code-security/supply-chain-security/about-alerts-for-vulnerable-dependencies)."{% ifversion fpt or ghes > 3.1 or ghec %} - See information about vulnerable dependencies in pull requests. For more information, see "[Reviewing dependency changes in a pull request](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-dependency-changes-in-a-pull-request)."{% endif %} @@ -102,7 +102,6 @@ The recommended formats explicitly define which versions are used for all direct ## Further reading - "[Dependency graph](https://en.wikipedia.org/wiki/Dependency_graph)" on Wikipedia -- "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)"{% ifversion fpt or ghec %} -- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %} +- "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)" - "[Viewing {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)" - "[Troubleshooting the detection of vulnerable dependencies](/github/managing-security-vulnerabilities/troubleshooting-the-detection-of-vulnerable-dependencies)" diff --git a/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-dependency-review.md b/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-dependency-review.md index 5287b923a5..52292921c1 100644 --- a/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-dependency-review.md +++ b/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-dependency-review.md @@ -45,5 +45,5 @@ La revisión de dependencias se encuentra disponible cuando se habilita la gráf {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.navigate-to-code-security-and-analysis %} 1. Under "Configure security and analysis features", check if the dependency graph is enabled. -1. If dependency graph is enabled, click **Enable** next to "{% data variables.product.prodname_GH_advanced_security %}" to enable {% data variables.product.prodname_advanced_security %}, including dependency review. The enable button is disabled if your enterprise has no available licenses for {% data variables.product.prodname_advanced_security %}.{% ifversion ghes < 3.3 %} ![Screenshot of "Code security and analysis" features"](/assets/images/enterprise/3.2/repository/code-security-and-analysis-enable-ghas-3.2.png){% endif %}{% ifversion ghes > 3.2 %} ![Screenshot of "Code security and analysis" features"](/assets/images/enterprise/3.4/repository/code-security-and-analysis-enable-ghas-3.4.png){% endif %} +1. If dependency graph is enabled, click **Enable** next to "{% data variables.product.prodname_GH_advanced_security %}" to enable {% data variables.product.prodname_advanced_security %}, including dependency review. El botón de habilitar está inhabilitado si tu empresa no tiene licencias disponibles para la {% data variables.product.prodname_advanced_security %}.{% ifversion ghes < 3.3 %} ![Screenshot of "Code security and analysis" features"](/assets/images/enterprise/3.2/repository/code-security-and-analysis-enable-ghas-3.2.png){% endif %}{% ifversion ghes > 3.2 %} ![Screenshot of "Code security and analysis" features"](/assets/images/enterprise/3.4/repository/code-security-and-analysis-enable-ghas-3.4.png){% endif %} {% endif %} diff --git a/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md b/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md index a9ac4d7443..1a4c8b7d6b 100644 --- a/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md +++ b/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md @@ -37,6 +37,6 @@ Cuando la gráfica de dependencias se habilita por primera vez, cualquier manifi ## Leer más -{% ifversion fpt or ghec %}- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %} +{% ifversion ghec %}- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %} - "[Ver las {% data variables.product.prodname_dependabot_alerts %} para las dependencias vulnerables](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)" - "[Solucionar problemas en la detección de dependencias vulnerables](/github/managing-security-vulnerabilities/troubleshooting-the-detection-of-vulnerable-dependencies)" diff --git a/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md b/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md index 366a2cb6d9..a857d0a12b 100644 --- a/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md +++ b/translations/es-ES/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md @@ -107,7 +107,7 @@ If a manifest or lock file is not processed, its dependencies are omitted from t ## Further reading - "[About the dependency graph](/github/visualizing-repository-data-with-graphs/about-the-dependency-graph)" -- "[Viewing {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)"{% ifversion fpt or ghec %} -- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)" +- "[Viewing {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)"{% ifversion ghec %} +- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %}{% ifversion fpt or ghec %} - "[Understanding how {% data variables.product.prodname_dotcom %} uses and protects your data](/get-started/privacy-on-github)" {% endif %} diff --git a/translations/es-ES/content/codespaces/codespaces-reference/security-in-codespaces.md b/translations/es-ES/content/codespaces/codespaces-reference/security-in-codespaces.md index d0e4692037..3befa2d4ac 100644 --- a/translations/es-ES/content/codespaces/codespaces-reference/security-in-codespaces.md +++ b/translations/es-ES/content/codespaces/codespaces-reference/security-in-codespaces.md @@ -56,7 +56,7 @@ Si necesitas permitir el acceso externo a los servicios que se ejecutan en un co Si necesitas conectarte a un servicio (tal como un servidor web de desarrollo) que se ejecute en tu codespace, puedes configurar el reenvío de puertos para hacer que el servicio esté disponible en la internet. -Organization owners can restrict the ability to make forward ports available publicly or within the organization. For more information, see "[Restricting the visibility of forwarded ports](/codespaces/managing-codespaces-for-your-organization/restricting-the-visibility-of-forwarded-ports)." +Los propietarios de las organizaciones pueden restringir la capacidad para hacer que los puertos reenviados estén disponibles públicamente o dentro de la organización. Para obtener más información, consulta la sección "[restringir la visbilidad de los puertos reenviados](/codespaces/managing-codespaces-for-your-organization/restricting-the-visibility-of-forwarded-ports)". **Puertos reenviados de forma privada**: Son accesibles mediante el internet, pero solo el creador del codespace puede acceder a ellos después de autenticarse en {% data variables.product.product_name %}. @@ -99,7 +99,7 @@ Existen algunas buenas prácticas adicionales y riesgos de los cuales debes esta #### Entender el archivo de devcontainer.json de un repositorio -When you create a codespace, if a `devcontainer.json` file is found for your repository, it is parsed and used to configure your codespace. The `devcontainer.json` file can contain powerful features, such as installing third-party extensions and running arbitrary code supplied in a `postCreateCommand`. +Cuando creas un codespace, si se encuentra un un archivo de `devcontainer.json` para tu repositorio, este se interpreta y utiliza para configurar tu codespace. El archivo `devcontainer.json` puede contener características poderosas, tales como instalar extensiones de terceros y ejecutar el código arbitrario que se suministra en un `postCreateCommand`. Para obtener más información, consulta la sección "[Introducción a los contenedores dev](/codespaces/setting-up-your-project-for-codespaces/introduction-to-dev-containers)". diff --git a/translations/es-ES/content/codespaces/codespaces-reference/understanding-billing-for-codespaces.md b/translations/es-ES/content/codespaces/codespaces-reference/understanding-billing-for-codespaces.md index fd1f14499c..fa57a9da5d 100644 --- a/translations/es-ES/content/codespaces/codespaces-reference/understanding-billing-for-codespaces.md +++ b/translations/es-ES/content/codespaces/codespaces-reference/understanding-billing-for-codespaces.md @@ -20,7 +20,7 @@ Este artículo te explica cómo funciona la facturación para tus codespaces y c ## Obtener acceso a {% data variables.product.prodname_codespaces %} -Your organization's administrator might limit {% data variables.product.prodname_codespaces %} usage to only specific personal accounts. Para obtener acceso, necesitarás contactar a tu gerente de facturación. Para obtener más información, consulta la sección "[Administrar el acceso y la seguridad para tus codespaces](/codespaces/managing-your-codespaces/managing-access-and-security-for-your-codespaces)". +Tu administrador de organización podría limitar el uso de los {% data variables.product.prodname_codespaces %} a solo cuentas personales específicas. Para obtener acceso, necesitarás contactar a tu gerente de facturación. Para obtener más información, consulta la sección "[Administrar el acceso y la seguridad para tus codespaces](/codespaces/managing-your-codespaces/managing-access-and-security-for-your-codespaces)". ## Cuánto cuesta utilizar {% data variables.product.prodname_codespaces %} diff --git a/translations/es-ES/content/codespaces/developing-in-codespaces/using-codespaces-for-pull-requests.md b/translations/es-ES/content/codespaces/developing-in-codespaces/using-codespaces-for-pull-requests.md index bcff140804..4a9912adc8 100644 --- a/translations/es-ES/content/codespaces/developing-in-codespaces/using-codespaces-for-pull-requests.md +++ b/translations/es-ES/content/codespaces/developing-in-codespaces/using-codespaces-for-pull-requests.md @@ -27,7 +27,7 @@ topics: 2. En la lista de solicitudes de cambios, haz clic en aquella que quieras abrir en {% data variables.product.prodname_codespaces %}. 3. A la derecha de tu pantalla, haz clic en **{% octicon "code" aria-label="The code icon" %} Código**. -4. In the {% data variables.product.prodname_codespaces %} tab, click **Create codespace on BRANCH**. ![Opción para abrir una solicitud de cambios en un codespace](/assets/images/help/codespaces/open-with-codespaces-pr.png) +4. En la pestaña de {% data variables.product.prodname_codespaces %}, haz clic en **Crear un codespace en RAMA**. ![Opción para abrir una solicitud de cambios en un codespace](/assets/images/help/codespaces/open-with-codespaces-pr.png) ## Revisar una solicitud de cambios en {% data variables.product.prodname_codespaces %} diff --git a/translations/es-ES/content/codespaces/getting-started/quickstart.md b/translations/es-ES/content/codespaces/getting-started/quickstart.md index 48183b8c76..b31fbedf9a 100644 --- a/translations/es-ES/content/codespaces/getting-started/quickstart.md +++ b/translations/es-ES/content/codespaces/getting-started/quickstart.md @@ -27,7 +27,7 @@ Para obtener más información sobre cómo funcionan los {% data variables.produ 2. Name your repository, select your preferred privacy setting, and click **Create repository from template**. -3. Navega a la página principal del repositorio recientemente creado. Under the repository name, use the **{% octicon "code" aria-label="The code icon" %} Code** drop-down menu, and in the **Codespaces** tab, click **Create codespace on main**. +3. Navega a la página principal del repositorio recientemente creado. Debajo del nombre de repositorio, utiliza el menú desplegable **{% octicon "code" aria-label="The code icon" %} Código** y la pestaña de **Codespaces** y haz clic en **Crear codespace en rama principal**. ![Botón de codespace nuevo](/assets/images/help/codespaces/new-codespace-button.png) diff --git a/translations/es-ES/content/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces.md b/translations/es-ES/content/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces.md index 71c2db5e07..6c4a3ccb6d 100644 --- a/translations/es-ES/content/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces.md +++ b/translations/es-ES/content/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces.md @@ -22,7 +22,7 @@ shortTitle: Secretos cifrados ## Acerca de los secretos cifrados para los {% data variables.product.prodname_codespaces %} -You can add encrypted secrets to your personal account that you want to use in your codespaces. Por ejemplo, puede que quieras almacenar y acceder a la siguiente información sensible en forma de un secreto cifrado. +Puedes agregar secretos cifrados a tu cuenta personal si los quieres utilizar en tus codespaces. Por ejemplo, puede que quieras almacenar y acceder a la siguiente información sensible en forma de un secreto cifrado. - Tokens de acceso personal para los servicios en la nube - Entidades de servicio diff --git a/translations/es-ES/content/codespaces/managing-your-codespaces/managing-repository-access-for-your-codespaces.md b/translations/es-ES/content/codespaces/managing-your-codespaces/managing-repository-access-for-your-codespaces.md index 8cf09dd61a..91040c5baa 100644 --- a/translations/es-ES/content/codespaces/managing-your-codespaces/managing-repository-access-for-your-codespaces.md +++ b/translations/es-ES/content/codespaces/managing-your-codespaces/managing-repository-access-for-your-codespaces.md @@ -1,5 +1,5 @@ --- -title: Managing access to other repositories within your codespace +title: Administrar el acceso a otros repositorios dentro de tu codespace allowTitleToDifferFromFilename: true shortTitle: Acceso a los repositorios intro: 'Puedes administrar los repositorios a los cuales pueden acceder los {% data variables.product.prodname_codespaces %}.' @@ -16,14 +16,14 @@ redirect_from: ## Resumen -By default, your codespace is assigned a token scoped to the repository from which it was created. For more information, see "[Security in {% data variables.product.prodname_codespaces %}](/codespaces/codespaces-reference/security-in-codespaces#authentication)." If your project needs additional permissions for other repositories, you can configure this in the `devcontainer.json` file and ensure other collaborators have the right set of permissions. +Predeterminadamente, a tu codespace se le asigna un token con alcance del repositorio del cual se creó. Para obtener más información, consulta la sección "[Seguridad en {% data variables.product.prodname_codespaces %}](/codespaces/codespaces-reference/security-in-codespaces#authentication)". Si tu proyecto necesita permisos adicionales para otros repositorios, puedes configurar esto en el archivo `devcontainer.json` y asegurarte de que otros colaboradores tengan el conjunto de permisos correcto. -When permissions are listed in the `devcontainer.json` file, you will be prompted to review and authorize the additional permissions as part of codespace creation for that repository. Once you've authorized the listed permissions, {% data variables.product.prodname_github_codespaces %} will remember your choice and will not prompt you for authorization unless the permissions in the `devcontainer.json` file change. +Cuando los permisos se listan en el archivo `devcontainer.json`, se te pedirá revisar y autorizar los permisos adicionales como parte de la creación de codespaces para dicho repositorio. Una vez que autorizas los permisos listados, {% data variables.product.prodname_github_codespaces %} recordará tu elección y no te pedirá autorización amenos de que cambien los permisos en el archivo `devcontainer.json`. ## Prerrequisitos -To create codespaces with custom permissions defined, you must use one of the following: -* The {% data variables.product.prodname_dotcom %} web UI +Para crear codespaces con permisos personalizados definidos, debes utilizar uno de los siguientes: +* La IU web de {% data variables.product.prodname_dotcom %} * [{% data variables.product.prodname_dotcom %} CLI](https://github.com/cli/cli/releases/latest) 2.5.2 or later * [{% data variables.product.prodname_github_codespaces %} Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=GitHub.codespaces) 1.5.3 or later @@ -55,20 +55,20 @@ To create codespaces with custom permissions defined, you must use one of the fo {% endnote %} - You can grant as many or as few of the following permissions for each repository listed: - * `actions` - read / write - * `checks` - read / write - * `contents` - read / write - * `deployments` - read / write - * `discussions` - read / write - * `issues` - read / write - * `pages` - read / write - * `pull_requests` - read / write - * `repository_projects` - read / write - * `statuses` - read / write - * `workflows` - write + Puedes otorgar tantos o tan pocos de los permisos siguientes como quieras para cada repositorio listado: + * `actions` - lectura / escritura + * `checks` - lectura / escritura + * `contents` - lectura / escritura + * `deployments` - lectura / escritura + * `discussions` - lectura / escritura + * `issues` - lectura / escritura + * `pages` - lectura / escritura + * `pull_requests` - lectura / escritura + * `repository_projects` - lectura / escritura + * `statuses` - lectura / escritura + * `workflows` - escritura - To set a permission for all repositories in an organization, use the `*` wildcard following your organization name in the `repositories` object. + Para configurar un permiso para todos los repositorios de una organización, utiliza el comodín `*` seguido de tu nombre de organización en el objeto `repositories`. ```json { @@ -86,7 +86,7 @@ To create codespaces with custom permissions defined, you must use one of the fo } ``` - To set all permissions for a given repository, use `read-all` or `write-all` in the `permissions` object + Para configurar todos los permisos para un repositorio específico, utiliza `read-all` i `write-all` en el objeto `permissions` ```json { @@ -104,29 +104,29 @@ To create codespaces with custom permissions defined, you must use one of the fo } ``` -## Authorizing requested permissions +## Autorizar los permisos solicitados -If additional repository permissions are defined in the `devcontainer.json` file, you will be prompted to review and optionally authorize the permissions when you create a codespace for this repository. When you authorize permissions for a repository, {% data variables.product.prodname_github_codespaces %} will not re-prompt you unless the set of requested permissions has changed for the repository. +Si se definen permisos de repositorio adicionales en el archivo `devcontainer.json`, se te pedirá revisar y, opcionalmente, autorizar los permisos cuando crees un codespace para este repositorio. Cuando autorizas permisos para un repositorio, {% data variables.product.prodname_github_codespaces %} no volverá a enviar mensajes a menos de que el conjunto de permisos solicitados haya cambiado para el repositorio. -![The requested permissions page](/assets/images/help/codespaces/codespaces-accept-permissions.png) +![La página de permisos solicitados](/assets/images/help/codespaces/codespaces-accept-permissions.png) -You should only authorize permissions for repositories you know and trust. If you don't trust the set of requested permissions, click **Continue without authorizing** to create the codespace with the base set of permissions. Rejecting additional permissions may impact the functionality of your project within the codespace as the codespace will only have access to the repository from which it was created. +Solo deberías autorizar los permisos para los repositorios que conoces y en los cuales confías. Si no confías en el conjunto de permisos solicitados, haz clic en **Continuar sin autorizar** para crear el codespace con el conjunto de permisos base. El rechazar permisos adicionales podría impactar la funcionalidad de tu proyecto dentro del codespace, ya que este codespace solo tendrá acceso al repositorio desde el cuál se creó. -You can only authorize permissions that your personal account already possesses. If a codespace requests permissions for repositories that you don't currently have access to, contact an owner or admin of the repository to obtain sufficient access and then try to create a codespace again. +Solo puedes autorizar los permisos que tu cuenta personal ya posea. Si un codespace solicita permisos para los repositorios a los cuales no tienes acceso actualmente, contacta a un propietario o administrador del repositorio para obtener suficiente acceso y luego intenta crear un codespace nuevamente. -## Access and security +## Acceso y seguridad {% warning %} -**Deprecation note**: The access and security setting, in the {% data variables.product.prodname_codespaces %} section of your personal account settings, is now deprecated. To enable expanded access to other repositories, add the requested permissions to your dev container definition for your codespace, as described above. +**Aviso de obsolesencia**: El acceso y ajuste de seguridad, en la sección de {% data variables.product.prodname_codespaces %} de los ajustes de tu cuenta personal, ahora es obsoleto. Para habilitar un acceso expandido a otros repositorios, agrega los permisos solicitados a tu definición de contenedor dev para tu codespace, tal como se describe anteriormente. {% endwarning %} -When you enable access and security for a repository owned by your personal account, any codespaces that are created for that repository will have read permissions to all other repositories you own. Si quieres restringir los repositorios a los que puede acceder un codespace, puedes limitarlos a ya sea el repositorio para el cual se abrió el codespace o a repositorios específicos. Solo debes habilitar el acceso y la seguridad para los repositorios en los cuales confíes. +Cuando habilitas el acceso y la seguridad para un repositorio que le pertenece a tu cuenta personal, cualquier codespace que se cree para dicho repositorio tendrá permisos de lectura para todos los otros repositorios que te pertenezcan. Si quieres restringir los repositorios a los que puede acceder un codespace, puedes limitarlos a ya sea el repositorio para el cual se abrió el codespace o a repositorios específicos. Solo debes habilitar el acceso y la seguridad para los repositorios en los cuales confíes. {% data reusables.user-settings.access_settings %} {% data reusables.user-settings.codespaces-tab %} -1. Under "Access and security", select the setting you want for your personal account. +1. Debajo de "Acceso y seguridad", selecciona el ajuste que quieras para tu cuenta personal. ![Botones radiales para adminsitrar los repositorios confiables](/assets/images/help/settings/codespaces-access-and-security-radio-buttons.png) diff --git a/translations/es-ES/content/codespaces/managing-your-codespaces/reviewing-your-security-logs-for-codespaces.md b/translations/es-ES/content/codespaces/managing-your-codespaces/reviewing-your-security-logs-for-codespaces.md index fee49b0dbe..0e9a4f9d58 100644 --- a/translations/es-ES/content/codespaces/managing-your-codespaces/reviewing-your-security-logs-for-codespaces.md +++ b/translations/es-ES/content/codespaces/managing-your-codespaces/reviewing-your-security-logs-for-codespaces.md @@ -16,7 +16,7 @@ topics: ## Acerca de las bitácoras de seguridad para los {% data variables.product.prodname_codespaces %} -When you perform an action related to {% data variables.product.prodname_codespaces %} in repositories owned by your personal account, you can review the actions in the security log. Para obtener más información sobre acceder a la bitácora, consulta la sección "[Revisar tu bitácora de seguridad](/github/authenticating-to-github/reviewing-your-security-log#accessing-your-security-log)". +Cuando realizas una acción relacionada con los {% data variables.product.prodname_codespaces %} en los repositorios que pertenecen a tu cuenta personal, puedes revisar las acciones en la bitácora de seguridad. Para obtener más información sobre acceder a la bitácora, consulta la sección "[Revisar tu bitácora de seguridad](/github/authenticating-to-github/reviewing-your-security-log#accessing-your-security-log)". ![bitácora de seguridad con información sobre los codespaces](/assets/images/help/settings/codespaces-audit-log.png) diff --git a/translations/es-ES/content/codespaces/setting-up-your-project-for-codespaces/introduction-to-dev-containers.md b/translations/es-ES/content/codespaces/setting-up-your-project-for-codespaces/introduction-to-dev-containers.md index f4a56a9883..f7ef9b6fcb 100644 --- a/translations/es-ES/content/codespaces/setting-up-your-project-for-codespaces/introduction-to-dev-containers.md +++ b/translations/es-ES/content/codespaces/setting-up-your-project-for-codespaces/introduction-to-dev-containers.md @@ -1,6 +1,6 @@ --- title: Introducción a los contenedores dev -intro: 'When you work in a codespace, the environment you are working in is created using a development container, or dev container, hosted on a virtual machine.' +intro: 'Cuando trabajas en un codespace, el ambiente en el que estás trabajando se crea utilizando un contenedor de desarrollo o contenedor dev, el cual se hospeda en una máquina virtual.' permissions: People with write permissions to a repository can create or edit the codespace configuration. redirect_from: - /github/developing-online-with-github-codespaces/configuring-github-codespaces-for-your-project @@ -21,65 +21,65 @@ product: '{% data reusables.gated-features.codespaces %}' ## Acerca de los contenedores dev -Development containers, or dev containers, are Docker containers that are specifically configured to provide a full-featured development environment. Whenever you work in a codespace, you are using a dev container on a virtual machine. +Los contenedores de desarrollo o contenedores dev son contenedores de Docker que se configuran específicamente para proporcionar un ambiente de desarrollo con características completas. Cuando sea que trabajes en un codespace, estarás utilizando un contenedor dev en una máquina virtual. -You can configure the dev container for a repository so that codespaces created for that repository give you a tailored development environment, complete with all the tools and runtimes you need to work on a specific project. If you don't define a configuration in the repository then {% data variables.product.prodname_github_codespaces %} uses a default configuration, which contains many of the common tools that your team might need for development with your project. For more information, see "[Using the default dev container configuration](#using-the-default-dev-container-configuration)." +Puedes configurar el dev container en un repositorio para que el codespace que se cree para dicho repositorio te proporcione un ambiente de desarrollo personalizado, completo con todas las herramientas y tiempos de ejecución que necesitas para trabajar en un proyecto específico. Si no defines una configuración en el repositorio, entonces el {% data variables.product.prodname_github_codespaces %} utilizará una configuración predeterminada, la cual contendrá muchas de las herramientas comunes que podría necesitar tu equipo para el desarrollo de tu proyecto. Para obtener más información, consulta la sección "[Utilizar la configuración predeterminada](#using-the-default-dev-container-configuration)". -The configuration files for a dev container are contained in a `.devcontainer` directory in your repository. You can use {% data variables.product.prodname_vscode %} to add configuration files for you. You can choose from a selection of predefined configurations for various project types. You can use these without further configuration, or you can edit the configurations to refine the development environment they produce. For more information, see "[Using a predefined dev container configuration](#using-a-predefined-dev-container-configuration)." +Los archivos de configuración de un contenedor dev se contienen en un directorio `.devcontainer` en tu repositorio. Puedes utilizar {% data variables.product.prodname_vscode %} para que agregue archivos de configuración para ti. Puedes elegir de entre una variedad de configuraciones predefinidas para varios tipos de proyecto. Puedes utilizarlos sin configuraciones subsecuentes o puedes editar las configuraciones para refinar el ambiente de desarrollo que producen. Para obtener más información, consulta la sección "[Utilizar una configuración predefinida de contenedor dev](#using-a-predefined-dev-container-configuration)". -Alternatively, you can add your own custom configuration files. For more information, see "[Creating a custom dev container configuration](#creating-a-custom-dev-container-configuration)." +Como alternativa, puedes agregar tus propios archivos de configuración persionalizados. Para obtener más información, consulta la sección "[Crear una configuración personalizada de contenedor dev](#creating-a-custom-dev-container-configuration)". -You can define a single dev container configuration for a repository, different configurations for different branches, or multiple configurations. When multiple configurations are available, users can choose their preferred configuration when they create a codespace. This is particularly useful for large repositories that contain source code in different programming languages or for different projects. You can create a choice of configurations that allow different teams to work in a codespace that's set up appropriately for the work they are doing. +Puedes definir una sola configuración de contenedor dev para un repositorios, configuraciones diferentes para ramas diferentes o configuraciones múltiples. Cuando hay configuraciones múltiples disponibles, los usuarios pueden elegir su configuración preferida cuando crean un codespace. Esto es particularmente útil para los repositorios grandes que contienen código fuente en diversos lenguajes de programación o para proyectos diferentes. Puedes crear una variedad de configuraciones que permitan que los diferentes equipos trabajen en un codespace que se configuró adecuadamente para el trabajo que están realizando. ### devcontainer.json -The primary file in a dev container configuration is the `devcontainer.json` file. You can use this file to determine the environment of codespaces created for your repository. The contents of this file define a dev container that can include frameworks, tools, extensions, and port forwarding. The `devcontainer.json` file usually contains a reference to a Dockerfile, which is typically located alongside the `devcontainer.json` file. +El archivo principal en una configuración de contenedor dev es `devcontainer.json`. Puedes utilizar este archivo para determinar el ambiente de los codespaces que se crean para tu repositorio. El contenido de este archivo define un contenedor dev que puede incluir marcos de trabajo, herramientas, extensiones y reenvío de puertos. El archivo `devcontainer.json` a menudo contiene una referencia a un Dockerfile, que habitualmente se ubica en todo el archivo `devcontainer.json`. -If you don't add a `devcontainer.json` file to your repository. the default dev container configuration is used. For more information, see "[Using the default dev container configuration](#using-the-default-dev-container-configuration)." +Si no agregas un archivo `devcontainer.json` a tu repositorio, se utilizará la configuración del contenedor dev predeterminado. Para obtener más información, consulta la sección "[Utilizar la configuración predeterminada](#using-the-default-dev-container-configuration)". -The `devcontainer.json` file is usually located in the `.devcontainer` directory of your repository. Alternatively, you can locate it directly in the root of the repository, in which case the file name must begin with a period: `.devcontainer.json`. +El archivo `devcontainer.json` a menudo se ubica en el directorio `.devcontainer` de tu repositorio. Como alternativa, puedes ubicarlo directamente en la raíz del repositorio, en cuyo caso el nombre de archivo debe comenzar con un punto: `.devcontainer.json`. -If you want to have a choice of dev container configurations in your repository, any alternatives to the `.devcontainer/devcontainer.json` (or `.devcontainer.json`) file must be located in their own subdirectory at the path `.devcontainer/SUBDIRECTORY/devcontainer.json`. For example, you could have a choice of two configurations: +SI quieres tener una variedad de configuraciones de contenedores dev en tu repositorio, cualquier alternativa al archivo `.devcontainer/devcontainer.json` (o `.devcontainer.json`) debe ubicarse en su propio subdirectorio en la ruta `.devcontainer/SUBDIRECTORY/devcontainer.json`. Por ejemplo, podrías tener una elección de dos configuracones: * `.devcontainer/database-dev/devcontainer.json` * `.devcontainer/gui-dev/devcontainer.json` -When you have multiple `devcontainer.json` files in your repository, each codespace is created from only one of the configurations. Settings cannot be imported or inherited between `devcontainer.json` files. If a `devcontainer.json` file in a custom subdirectory has dependent files, such as the Dockerfile or scripts that are run by commands in the `devcontainer.json` file, it's recommended that you co-locate these files in the same subdirectory. +Cuando tienes varios archivos de `devcontainer.json` en tu repositorio, cada codespace se crea desde solo una de las configuraciones. No se pueden importar los ajustes ni heredarlos entre archivos de `devcontainer.json`. Si un archivo de `devcontainer.json` en un subdirectorio personalizado tiene archivos dependientes, tales como el Dockerfile o los scripts que ejecutan los comandos en dicho archivo `devcontainer.json`, se recomienda que coloques ambos de estos archivos en el mismo directorio. -For information about how to choose your preferred dev container configuration when you create a codespace, see "[Creating a codespace](/codespaces/developing-in-codespaces/creating-a-codespace#creating-a-codespace)." +Para obtener más información sobre cómo elegir tu configuración preferida de contenedor dev cuando creas un codespace, consulta la sección "[Crear un codespace](/codespaces/developing-in-codespaces/creating-a-codespace#creating-a-codespace)". {% data reusables.codespaces.more-info-devcontainer %} -#### How to use the devcontainer.json +#### Cómo utilizar el devcontainer.json -It's useful to think of the `devcontainer.json` file as providing "customization" rather than "personalization." You should only include things that everyone working on your codebase needs as standard elements of the development environment, not things that are personal preferences. Things like linters are good to standardize on, and to require everyone to have installed, so they're good to include in your `devcontainer.json` file. Things like user interface decorators or themes are personal choices that should not be put in the `devcontainer.json` file. +Es útil pensar que el archivo `devcontainer.json` sirve para proporcionar "adaptación" en vez de "personalización". Solo debes incluir las cosas que necesiten todos los que trabajan en tus codespaces como elementos estándar del ambiente de desarrollo, no las que son preferencias personales. Las cosas como los limpiadores son buenas para estandarizar y para requerir que todos las tengan instaladas, así que es bueno incluirlas en tu archivo `devcontainer.json`. Las cosas como los decoradores de interfaz de usuario o los temas son elecciones personales que no deberían ponerse en el archivo `devcontainer.json`. -You can personalize your codespaces by using dotfiles and Settings Sync. For more information, see "[Personalizing Codespaces for your account](/codespaces/customizing-your-codespace/personalizing-codespaces-for-your-account)." +Puedes personalizar tus codespaces utilizando dotfiles y la sincronización de ajustes. Para obtener más información, consulta la sección "[Personalizar los codespaces para tu cuenta](/codespaces/customizing-your-codespace/personalizing-codespaces-for-your-account)". ### Dockerfile -You can add a Dockerfile as part of your dev container configuration. +Puedes agregar un Dockerfile como parte de tu configuración de contenedor dev. -The Dockerfile is a text file that contains the instructions needed to create a Docker container image. This image is used to generate a development container each time someone creates a codespace using the `devcontainer.json` file that references this Dockerfile. The instructions in the Dockerfile typically begin by referencing a parent image on which the new image that will be created is based. This is followed by commands that are run during the image creation process, for example to install software packages. +El Dockerfile es un archivo de texto que contiene las instrucciones necesarias para crear una imagen de contenedor de Docker. Esta imagen se utiliza para generar un contenedor de desarrollo cada que alguien crea un codespace utilizando el archivo `devcontainer.json` que referencia a este Dockerfile. Las instrucciones en el Dockerfile habitualmente comienzan haciendo referencia a una imagen padre en la cual se basa la imagen que se creará. A esto le siguen los comandos que se ejecutan durante el proceso de creación de imagen, por ejemplo, para instalar paquetes de software. -The Dockerfile for a dev container is typically located in the `.devcontainer` folder, alongside the `devcontainer.json` in which it is referenced. +El Dockerfile para un contenedor dev se ubica habitualmente en la carpeta `-.devcontainer`, junto con el `devcontainer.json` en el cual se referencia. {% note %} -**Note**: As an alternative to using a Dockerfile you can use the `image` property in the `devcontainer.json` file to refer directly to an existing image you want to use. If neither a Dockerfile nor an image is found then the default container image is used. For more information, see "[Using the default dev container configuration](#using-the-default-dev-container-configuration)." +**Nota**: Como alternativa a utilizar un Dockerfile, puedes utilizar la propiedad `image` en el archivo `devcontainer.json` para referirte directamente a una imagen existente que quieras utilizar. Si no se encuentra un Dockerfile ni una imagen, entonces se utilizará la imagen de contenedor predeterminada. Para obtener más información, consulta la sección "[Utilizar la configuración predeterminada](#using-the-default-dev-container-configuration)". {% endnote %} -#### Simple Dockerfile example +#### Ejemplo de un Dockerfile simple -The following example uses four instructions: +El siguiente ejemplo utiliza cuatro instrucciones: -`ARG` defines a build-time variable. +`ARG` define una variable de tiempo de compilación. -`FROM` specifies the parent image on which the generated Docker image will be based. +`FROM` especifica la imagen padre en la cual se basará la imagen de Docker generada. -`COPY` copies a file and adds it to the filesystem. +`COPY` copia un archivo y lo agrega al sistema de archivos. -`RUN` updates package lists and runs a script. You can also use a `RUN` instruction to install software, as shown by the commented out instructions. To run multiple commands, use `&&` to combine the commands into a single `RUN` statement. +`RUN` actualiza las listas de paquetes y ejecuta un script. También puedes utilizar una instrucción de `RUN` para instalar software, tal como lo muestran las instrucciones en las cuales se comentó. Para ejecutar comandos múltiples, utiliza `&&` para combinar los comandos en una sola declaración de `RUN`. ```Dockerfile{:copy} ARG VARIANT="16-buster" @@ -96,11 +96,11 @@ COPY library-scripts/github-debian.sh /tmp/library-scripts/ RUN apt-get update && bash /tmp/library-scripts/github-debian.sh ``` -For more information about Dockerfile instructions, see "[Dockerfile reference](https://docs.docker.com/engine/reference/builder)" in the Docker documentation. +Para obtener más información sobre las instrucciones de los Dockerfiles, consulta la "[referencia de Dockerfile](https://docs.docker.com/engine/reference/builder)" en la documentación de Docker. -#### Using a Dockerfile +#### Utilizar un Dockerfile -To use a Dockerfile as part of a dev container configuration, reference it in your `devcontainer.json` file by using the `dockerfile` property. +Para utilizar un Dockerfile como parte de una configuración de contenedor dev, referénciala en tu `devcontainer.json` utilizando la propiedad `dockerfile`. ```json{:copy} { @@ -110,26 +110,26 @@ To use a Dockerfile as part of a dev container configuration, reference it in yo } ``` -For more information about using a Dockerfile in a dev container configuration, see the {% data variables.product.prodname_vscode %} documentation "[Create a development container](https://code.visualstudio.com/docs/remote/create-dev-container#_dockerfile)." +Para obtener más información sobre cómo utilizar un Dockerfile en una configuración de contenedor dev, consulta la documentación de {% data variables.product.prodname_vscode %} "[Crear un contenedor de desarrollo](https://code.visualstudio.com/docs/remote/create-dev-container#_dockerfile)". -## Using the default dev container configuration +## Utilizar la configuración de contenedor dev predeterminada -If you don't define a configuration in your repository, {% data variables.product.prodname_dotcom %} creates a codespace using a default Linux image. This Linux image includes languages and runtimes like Python, Node.js, JavaScript, TypeScript, C++, Java, .NET, PHP, PowerShell, Go, Ruby, and Rust. It also includes other developer tools and utilities like Git, GitHub CLI, yarn, openssh, and vim. To see all the languages, runtimes, and tools that are included use the `devcontainer-info content-url` command inside your codespace terminal and follow the URL that the command outputs. +Si no defines una configuración en tu repositorio, {% data variables.product.prodname_dotcom %} creará un codespace utilizando una imagen de Linux predeterminada. Esta imagen de Linux incluye lenguajes y tiempos de ejecución como Python, Node.js, JavaScript, TypeScript, C++, Java, .NET, PHP, PowerShell, Go, Ruby y Rust. También incluye otras herramientas y utilidades de desarrollador como Git, el CLI de GitHub, yarn, openssh y vim. Para ver todos los lenguajes, tiempos de ejecución y herramientas que se incluyen, utiliza el comando `devcontainer-info content-url` dentro de tu terminal del codespace y sigue la URL que este produce. -Alternatively, for more information about everything that's included in the default Linux image, see the latest file in the [`microsoft/vscode-dev-containers`](https://github.com/microsoft/vscode-dev-containers/tree/main/containers/codespaces-linux) repository. +Como alternativa, para obtener más información sobre todo lo que incluye la imagen predeterminada de Linux, consulta el archivo más reciente del repositorio [`microsoft/vscode-dev-containers`](https://github.com/microsoft/vscode-dev-containers/tree/main/containers/codespaces-linux). -The default configuration is a good option if you're working on a small project that uses the languages and tools that {% data variables.product.prodname_github_codespaces %} provides. +La configuración predeterminada es una buena opción si estás trabajando en un proyecto pequeño que utilice los lenguajes y herramientas que proporciona {% data variables.product.prodname_github_codespaces %}. -## Using a predefined dev container configuration +## Utilizar una configuración predeterminada de contenedor dev -You can choose from a list of predefined configurations to create a dev container configuration for your repository. These configurations provide common setups for particular project types, and can help you quickly get started with a configuration that already has the appropriate container options, {% data variables.product.prodname_vscode %} settings, and {% data variables.product.prodname_vscode %} extensions that should be installed. +Puedes elegir de entre una lista de configuraciones predeterminadas para crear una configuración de contenedor dev para tu repositorio. Estas configuraciones proporcionan ajustes comunes para tipos de proyecto particulares y pueden ayudarte a iniciar rápidamente con una configuración que ya tenga las opciones de contenedor, ajustes de {% data variables.product.prodname_vscode %} y extensiones de {% data variables.product.prodname_vscode %} que deberían instalarse. -Utilizar una configuración predefinida es una gran idea si necesitas extensibilidad adicional. You can also start with a predefined configuration and amend it as needed for your project. +Utilizar una configuración predefinida es una gran idea si necesitas extensibilidad adicional. También puedes comenzar con una configuración predeterminada y modificarla conforme la necesites para tu proyecto. -You can add a predefined dev container configuration either while working in a codespace, or while working on a repository locally. +Puedes agregar una configuración de contenedor dev predefinida ya sea mientras trabajas en un codespace o localmente en un repositorio. {% data reusables.codespaces.command-palette-container %} -1. Click the definition you want to use. +1. Haz clic en la definición que quieres utilizar. ![Lista de definiciones de contenedores predefinidas](/assets/images/help/codespaces/predefined-container-definitions-list.png) @@ -138,7 +138,7 @@ You can add a predefined dev container configuration either while working in a c ![Botón de OK](/assets/images/help/codespaces/prebuilt-container-ok-button.png) -1. If you are working in a codespace, apply your changes, by clicking **Rebuild now** in the message at the bottom right of the window. Para obtener más información sbre reconstruir tu contenedor, consulta la sección "[Acplicar los cambios a tu configuración](#applying-changes-to-your-configuration)". +1. Si estás trabajando en un codespace, aplica tus cambios haciendo clic en **Recompilar ahora** en el mensaje en la parte inferior derecha de la ventana. Para obtener más información sbre reconstruir tu contenedor, consulta la sección "[Acplicar los cambios a tu configuración](#applying-changes-to-your-configuration)". !["Codespaces: Reconstruir contenedor" en la {% data variables.product.prodname_vscode_command_palette %}](/assets/images/help/codespaces/rebuild-prompt.png) @@ -150,7 +150,7 @@ You can add a predefined dev container configuration either while working in a c {% endnote %} -You can add features to your predefined container configuration to customize which tools are available and extend the functionality of your workspace without having to create a custom dev container configuration from scratch. For example, you could use a predefined container configuration and add the {% data variables.product.prodname_cli %}. Puedes hacer que estas características adicionales estén disponibles para tu proyecto agregándolas a tu archivo de `devcontainer.json` cuando configures los ajustes de dicho contenedor. +Puedes agregar características a tu configuración predefinida de contenedor para personaliza las herramientas que están disponibles y extender la funcionalidad de tu espacio de trabajo sin tener que crear una configuración personalizada de contenedor dev desde cero. Por ejemplo, podrías utilizar una configuración predefinida de contenedor y agregar el {% data variables.product.prodname_cli %}. Puedes hacer que estas características adicionales estén disponibles para tu proyecto agregándolas a tu archivo de `devcontainer.json` cuando configures los ajustes de dicho contenedor. Puedes agregar algunas de las características más comunes seleccionándolas cuando configures tu contenedor predefinido. Para obtener más información sobre las características disponibles, consulta la [librería de scripts](https://github.com/microsoft/vscode-dev-containers/tree/main/script-library#scripts) en el repositorio `vscode-dev-containers`. @@ -167,34 +167,34 @@ Puedes agregar algunas de las características más comunes seleccionándolas cu !["Codespaces: Reconstruir contenedor" en la paleta de comandos](/assets/images/help/codespaces/rebuild-prompt.png) -## Creating a custom dev container configuration +## Crear una configuración de contenedor dev personalizada -If none of the predefined configurations meets your needs, you can create a custom configuration by writing your own `devcontainer.json` file. +Si ninguna de las configuraciones predefinidas satisface tus necesidades, puedes crear una configuración personalizada si escribes tu propio archivo `devcontainer.json`. -* If you're adding a single `devcontainer.json` file that will be used by everyone who creates a codespace from your repository, create the file within a `.devcontainer` directory at the root of the repository. -* If you want to offer users a choice of configuration, you can create multiple custom `devcontainer.json` files, each located within a separate subdirectory of the `.devcontainer` directory. +* Si estás agregando un solo archivo `devcontainer.json` que utilizará todo aquél que cree un codespace desde tu repositorio, crea el archivo dentro de un directorio de `.devcontainer` en la raíz del repositorio. +* Si quieres ofrecer a los usuarios una elección de configuración, puedes crear archivos múltiples de `devcontainer.json`, cada uno ubicado dentro de un subdirectorio por separado del directorio `.devcontainer`. {% note %} - **Note**: You can't locate your `devcontainer.json` files in directories more than one level below `.devcontainer`. For example, a file at `.devcontainer/teamA/devcontainer.json` will work, but `.devcontainer/teamA/testing/devcontainer.json` will not. + **Nota**: No puedes ubicar tus archivos de `devcontainer.json` en los directorios a más de un nivel debajo de `.devcontainer`. Por ejemplo, un archivo en la ruta `.devcontainer/teamA/devcontainer.json` sí funcionaría, pero uno en `.devcontainer/teamA/testing/devcontainer.json`, no. {% endnote %} - If multiple `devcontainer.json` files are found in the repository, they are listed in the codespace creation options page. Para obtener más información, consulta la sección "[Crear un codespace](/codespaces/developing-in-codespaces/creating-a-codespace#creating-a-codespace)". + Si se encuentran archivos `devcontainer.json` múltiples en el repositorio, estos se listarán en la página de opciones de creación de codespaces. Para obtener más información, consulta la sección "[Crear un codespace](/codespaces/developing-in-codespaces/creating-a-codespace#creating-a-codespace)". ![A choice of configuration files](/assets/images/help/codespaces/configuration-file-choice.png) -### Default configuration selection during codespace creation +### Selección de configuración predeterminada durante la creación de codespaces -If `.devcontainer/devcontainer.json` or `.devcontainer.json` exists, it will be the default selection in the list of available configuration files when you create a codespace. If neither file exists, the default dev container configuration will be selected by default. +Si existe el archivo `.devcontainer/devcontainer.json` o `.devcontainer.json`, este será la selección predeterminada en la lista de archivos de configuración disponibles cuando crees un codespace. Si no existe ninguno de ellos, se seleccionará la configuración de contenedor dev predefinida. ![The default configuration choice selected](/assets/images/help/codespaces/configuration-file-choice-default.png) -### Editing the devcontainer.json file +### Editar el archivo devcontainer.json -You can add and edit the supported configuration keys in the `devcontainer.json` file to specify aspects of the codespace's environment, like which {% data variables.product.prodname_vscode %} extensions will be installed. {% data reusables.codespaces.more-info-devcontainer %} +Puedes agregar y editar las claves de configuración compatibles en el archivo `devcontainer.json` para especificar los aspectos del ambiente del codespace, como qué extensiones de {% data variables.product.prodname_vscode %} se instalarán. {% data reusables.codespaces.more-info-devcontainer %} -The `devcontainer.json` file is written using the JSONC format. This allows you to include comments within the configuration file. For more information, see "[Editing JSON with Visual Studio Code](https://code.visualstudio.com/docs/languages/json#_json-with-comments)" in the {% data variables.product.prodname_vscode %} documentation. +El archivo de `devcontainer.json` se escribe utilizando el formato JSONC. Esto te permite incluir comentarios dentro del archivo de configuración. For more information, see "[Editing JSON with Visual Studio Code](https://code.visualstudio.com/docs/languages/json#_json-with-comments)" in the {% data variables.product.prodname_vscode %} documentation. {% note %} diff --git a/translations/es-ES/content/codespaces/troubleshooting/troubleshooting-port-forwarding-for-codespaces.md b/translations/es-ES/content/codespaces/troubleshooting/troubleshooting-port-forwarding-for-codespaces.md index 530c0c449f..ce69567299 100644 --- a/translations/es-ES/content/codespaces/troubleshooting/troubleshooting-port-forwarding-for-codespaces.md +++ b/translations/es-ES/content/codespaces/troubleshooting/troubleshooting-port-forwarding-for-codespaces.md @@ -20,4 +20,4 @@ Si se configura el reenvío de puertos, verifica lo siguiente: - Utiliza la alerta de notificación o haz clic en la URL de la Terminal para abrir el puerto reenviado. No funcionará teclear `localhost:8000` (como ejemplo) en tu máquina local si estás conectado al codespace a través del buscador. - Asegúrate de verificar que tu aplicación aún se esté ejecutando desde dentro de tu codespace. Si tu codespace paró después de un periodo de inactividad, necesitarás garantizar que tu aplicación reinicie una vez que se reinició el codespace. -Typically, you can make a forwarded port accessible publicly, or within the organization that owns a repository. Para obtener más información, consulta la sección "[Reenviar puertos en tu codespace](/codespaces/developing-in-codespaces/forwarding-ports-in-your-codespace)". If either, or both, of the options for public or organization visibility are not available, this indicates that an organization-level policy has been configured. For more information, see "[Restricting the visibility of forwarded ports](/codespaces/managing-codespaces-for-your-organization/restricting-the-visibility-of-forwarded-ports)." +Habitualmente, puedes hacer que un puerto reenviado sea accesible al público o dentro de la organización a la que le pertenezca un repositorio. Para obtener más información, consulta la sección "[Reenviar puertos en tu codespace](/codespaces/developing-in-codespaces/forwarding-ports-in-your-codespace)". Si cualquiera o ambas de las opciones para visibilidad de organización o al público están indispuestas, esto indica que sí se configuró la política a nivel organizacional. Para obtener más información, consulta la sección "[restringir la visbilidad de los puertos reenviados](/codespaces/managing-codespaces-for-your-organization/restricting-the-visibility-of-forwarded-ports)". diff --git a/translations/es-ES/content/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file.md b/translations/es-ES/content/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file.md index d4ec97bc35..41669c97ed 100644 --- a/translations/es-ES/content/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file.md +++ b/translations/es-ES/content/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file.md @@ -45,7 +45,7 @@ No puedes crear un archivo de licencia predeterminado. Los archivos de licencia ## Crear un repositorio para archivos predeterminados {% data reusables.repositories.create_new %} -2. Use the **Owner** drop-down menu, and select the organization{% ifversion fpt or ghes or ghec %} or personal account{% endif %} you want to create default files for. ![Menú desplegable Propietario](/assets/images/help/repository/create-repository-owner.png) +2. Utiliza el menú desplegable de **Propietario** y selecciona a la cuenta de organización{% ifversion fpt or ghes or ghec %} o personal{% endif %} para la cual quieras crear archivos predeterminados. ![Menú desplegable Propietario](/assets/images/help/repository/create-repository-owner.png) 3. Escribe **.github** como nombre para tu repositorio y escribe una descripción opcional. ![Crear un campo de repositorio](/assets/images/help/repository/default-file-repository-name.png) 4. Asegúrate de que el estado del repositorio se encuentre configurado en **Público** (los repositorios para los archivos predeterminados no pueden ser privados). ![Botones de selección para seleccionar el estado público o privado](/assets/images/help/repository/create-repository-public-private.png) {% data reusables.repositories.initialize-with-readme %} diff --git a/translations/es-ES/content/desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/authenticating-to-github.md b/translations/es-ES/content/desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/authenticating-to-github.md index 05c2bc32ba..b81871f3c4 100644 --- a/translations/es-ES/content/desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/authenticating-to-github.md +++ b/translations/es-ES/content/desktop/installing-and-configuring-github-desktop/installing-and-authenticating-to-github-desktop/authenticating-to-github.md @@ -36,11 +36,11 @@ Antes de realizar la autenticación, {% data reusables.desktop.get-an-account %} {% data reusables.desktop.mac-select-desktop-menu %} {% data reusables.desktop.mac-select-accounts %} {% data reusables.desktop.choose-product-authenticate %} -4. To add an account on {% data variables.product.product_location_enterprise %}, type the URL for your instance under "Enterprise address," then click **Continue**. ![El botón Sign In (Iniciar sesión) para GitHub Enterprise](/assets/images/help/desktop/mac-sign-in-button-enterprise.png) +4. Para agregar una cuenta en {% data variables.product.product_location_enterprise %}, teclea la URL de tu instancia debajo de "Dirección de empresa" y luego haz clic en **Continuar**. ![El botón Sign In (Iniciar sesión) para GitHub Enterprise](/assets/images/help/desktop/mac-sign-in-button-enterprise.png) {% data reusables.desktop.sign-in-browser %} -1. To authenticate to {% data variables.product.product_location_enterprise %} account, type your account credentials and click **Sign in**. ![El botón de Inicio de sesión para {% data variables.product.prodname_ghe_server %} en el navegador](/assets/images/help/desktop/enterprise-sign-in-button-browser.png) +1. Para autenticarte en la cuenta de {% data variables.product.product_location_enterprise %}, teclea las credenciales de tu cuenta y haz clic en **Iniciar sesión**. ![El botón de Inicio de sesión para {% data variables.product.prodname_ghe_server %} en el navegador](/assets/images/help/desktop/enterprise-sign-in-button-browser.png) - Alternatively, if you were already signed in to {% data variables.product.product_location_enterprise %} account, follow the prompts to return to {% data variables.product.prodname_desktop %} to finish authenticating. + Como alternativa, si ya habías iniciado sesión en la cuenta de {% data variables.product.product_location_enterprise %}, sigue las instrucciones para regresar a {% data variables.product.prodname_desktop %} y finalizar la autenticación. {% endmac %} @@ -65,7 +65,7 @@ Antes de realizar la autenticación, {% data reusables.desktop.get-an-account %} {% data reusables.desktop.windows-choose-options %} {% data reusables.desktop.windows-select-accounts %} {% data reusables.desktop.choose-product-authenticate %} -4. To add a {% data variables.product.prodname_enterprise %} account, type your credentials under "Enterprise address," then click **Continue**. ![El botón Sign In (Iniciar sesión) para GitHub Enterprise](/assets/images/help/desktop/windows-sign-in-button-enterprise.png) +4. Para agregar una cuenta de {% data variables.product.prodname_enterprise %}, teclea tus credenciales debajo de "Dirección de empresa" y luego haz clic en **Continuar**. ![El botón Sign In (Iniciar sesión) para GitHub Enterprise](/assets/images/help/desktop/windows-sign-in-button-enterprise.png) {% data reusables.desktop.retrieve-2fa %} {% endwindows %} diff --git a/translations/es-ES/content/developers/apps/building-github-apps/creating-a-github-app-from-a-manifest.md b/translations/es-ES/content/developers/apps/building-github-apps/creating-a-github-app-from-a-manifest.md index 22a829fbe2..14e8280782 100644 --- a/translations/es-ES/content/developers/apps/building-github-apps/creating-a-github-app-from-a-manifest.md +++ b/translations/es-ES/content/developers/apps/building-github-apps/creating-a-github-app-from-a-manifest.md @@ -46,7 +46,7 @@ Sigue estos pasos par aimplementar el flujo del Manifiesto de la GitHub App: ### 1. Redireccionas a las personas a GitHub para crear una GitHub App Nueva -To redirect people to create a new GitHub App, [provide a link](#examples) for them to click that sends a `POST` request to `https://github.com/settings/apps/new` for a personal account or `https://github.com/organizations/ORGANIZATION/settings/apps/new` for an organization account, replacing `ORGANIZATION` with the name of the organization account where the app will be created. +Para redirigir a las personas a que creen una GitHub App nueva, [proporciona un enlace](#examples) en el que puedan hacer clic, el cual envíe una solicitud de `POST` a `https://github.com/settings/apps/new` para obtener una cuenta personal o a `https://github.com/organizations/ORGANIZATION/settings/apps/new` para obtener una cuenta organizacional, reemplazando a `ORGANIZATION` con el nombre de la cuenta de organización en donde se creará la app. Debes incluir los [Parámetros del Manifiesto de la GitHub App](#github-app-manifest-parameters) como una secuencia cifrada con JSON en un parámetro que se llame `manifest`. También puedes incluir un [parámetro](#parameters) de `state` para agregar seguridad adicional. @@ -83,7 +83,7 @@ El objeto `hook_attributes` tiene la siguiente clave: #### Ejemplos -This example uses a form on a web page with a button that triggers the `POST` request for a personal account: +Este ejemplo utiliza un formato en una página web con un botón que activa la solicitud de `POST` para una cuenta personal: ```html
diff --git a/translations/es-ES/content/developers/apps/building-github-apps/creating-a-github-app-using-url-parameters.md b/translations/es-ES/content/developers/apps/building-github-apps/creating-a-github-app-using-url-parameters.md index 729d04eb69..6c088afd31 100644 --- a/translations/es-ES/content/developers/apps/building-github-apps/creating-a-github-app-using-url-parameters.md +++ b/translations/es-ES/content/developers/apps/building-github-apps/creating-a-github-app-using-url-parameters.md @@ -18,7 +18,7 @@ shortTitle: Parámetros de consulta para la creción de apps Puedes agregar parámetros de consulta a estas URL para preseleccionar la configuración de una {% data variables.product.prodname_github_app %} en una cuenta organizacional o personal: -* **Personal account:** `{% data variables.product.oauth_host_code %}/settings/apps/new` +* **Cuenta personal:** `{% data variables.product.oauth_host_code %}/settings/apps/new` * **Cuenta organizacional:** `{% data variables.product.oauth_host_code %}/organizations/:org/settings/apps/new` El creador de la app puede editar los valores preseleccionados desde la página de registro de la {% data variables.product.prodname_github_app %} antes de emitirla. Si no incluyes los parámetros requeridos en la secuencia de consulta de la URL, como el `name`, el creador de la app necesitará ingresar un valor antes de emitirla. diff --git a/translations/es-ES/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md b/translations/es-ES/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md index ceecb940b6..e7ef5122e6 100644 --- a/translations/es-ES/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md +++ b/translations/es-ES/content/developers/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps.md @@ -149,7 +149,7 @@ Si un usuario revoca su autorización de una GitHub App, dicha app recibirá el ## Permisos a nivel de usuario -Puedes agregar permisos a nivel de usuario a tu GitHub App para acceder a los recursos del usuario, tales como correos electrónicos del usuario, los cuales otorgan los usuarios independientes como parte del [flujo de autorización del usuario](#identifying-users-on-your-site). User-level permissions differ from [repository and organization-level permissions](/rest/reference/permissions-required-for-github-apps), which are granted at the time of installation on an organization or personal account. +Puedes agregar permisos a nivel de usuario a tu GitHub App para acceder a los recursos del usuario, tales como correos electrónicos del usuario, los cuales otorgan los usuarios independientes como parte del [flujo de autorización del usuario](#identifying-users-on-your-site). Los permisos a nivel de usuario difieren de los [permisos a nivel de organización y de repositorio](/rest/reference/permissions-required-for-github-apps), los cuales se otorgan en el momento de la instalación en una cuenta personal o de organización. Puedes seleccionar los permisos a nivel de usuario desde dentro de la configuración de tu GitHub App en la sección de **Permisos de usuario** de la página de **Permisos & webhooks**. Para obtener más información sobre seleccionar permisos, consulta la sección [Editar los permisos de una GitHub App](/apps/managing-github-apps/editing-a-github-app-s-permissions/)". diff --git a/translations/es-ES/content/developers/apps/building-oauth-apps/scopes-for-oauth-apps.md b/translations/es-ES/content/developers/apps/building-oauth-apps/scopes-for-oauth-apps.md index 3f7926d6ae..ce655388a0 100644 --- a/translations/es-ES/content/developers/apps/building-oauth-apps/scopes-for-oauth-apps.md +++ b/translations/es-ES/content/developers/apps/building-oauth-apps/scopes-for-oauth-apps.md @@ -48,7 +48,7 @@ X-Accepted-OAuth-Scopes: user |  `repo_deployment` | Otorga acceso a los [estados de despliegue](/rest/reference/repos#deployments) para los repositorios{% ifversion not ghae %}públicos{% else %}internos{% endif %} y privados. Este alcance solo se necesita para otorgar acceso a otros usuarios o servicios para los estados de despliegue, *sin* otorgar acceso al código.{% ifversion not ghae %} |  `public_repo` | Limita el acceso a los repositorios públicos. Esto incluye el acceso de lectura/escritura al código, estados de las confirmaciones, proyectos de repositorio, colaboradores y estados de despliegue para los repositorios públicos y para las organizaciones. También se requieren para marcar los repositorios públicos como favoritos.{% endif %} |  `repo:invite` | Otorga capacidades de aceptar/rechazar las invitaciones para colaborar con un repositorio. Este alcance solo es necesario para otorgar a otros usuarios o servicios acceso a las invitaciones *sin* otorgar acceso al código.{% ifversion fpt or ghes or ghec %} -|  `security_events` | Grants:
read and write access to security events in the [{% data variables.product.prodname_code_scanning %} API](/rest/reference/code-scanning) {%- ifversion ghec %}
read and write access to security events in the [{% data variables.product.prodname_secret_scanning %} API](/rest/reference/secret-scanning){%- endif %}
This scope is only necessary to grant other users or services access to security events *without* granting access to the code.{% endif %} +|  `security_events` | Otorga:
acceso de lectura y escritura a los eventos de seguridad en la [API del {% data variables.product.prodname_code_scanning %}](/rest/reference/code-scanning) {%- ifversion ghec %}
acceso de lectura y escritura a los eventos de seguridad en la [API del {% data variables.product.prodname_secret_scanning %}](/rest/reference/secret-scanning){%- endif %}
Este alcance solo es necesario para otorgar acceso a los eventos de seguridad para otros usuarios o servicios *sin* otorgar acceso al código.{% endif %} | **`admin:repo_hook`** | Otorga acceso de lectura, escritura, pring y borrado a los ganchos de repositorio en los repositorios {% ifversion fpt %}públicos o privados{% elsif ghec or ghes %}públicos, privados o internos{% elsif ghae %}privados o internos{% endif %}. El alcance de `repo` {% ifversion fpt or ghec or ghes %}y de `public_repo` otorgan{% else %}otorga{% endif %} acceso total a los repositorios, icnluyendo a los ganchos de repositorio. Utiliza el alcance `admin:repo_hook` para limitar el acceso únicamente a los ganchos de los repositorios. | |  `write:repo_hook` | Otorga acceso de lectura, escritura y ping a los ganchos en repositorios {% ifversion fpt %}públicos o privados{% elsif ghec or ghes %}públicos, privados o internos{% elsif ghae %}privados o internos{% endif %}. | |  `read:repo_hook` | Otorga acceso de lectura y ping a los ganchos en repositorios {% ifversion fpt %}públicos o privados{% elsif ghec or ghes %}públicos, privados o internos{% elsif ghae %}privados o internos{% endif %}. | diff --git a/translations/es-ES/content/developers/apps/getting-started-with-apps/about-apps.md b/translations/es-ES/content/developers/apps/getting-started-with-apps/about-apps.md index db86ce81ab..7e11b59e60 100644 --- a/translations/es-ES/content/developers/apps/getting-started-with-apps/about-apps.md +++ b/translations/es-ES/content/developers/apps/getting-started-with-apps/about-apps.md @@ -28,7 +28,7 @@ Para obtener una guía detallada del proceso de creación de una {% data variabl Las {% data variables.product.prodname_github_apps %} son actores de primera clase dentro de GitHub. Una {% data variables.product.prodname_github_app %} actúa por si misma, tomando las acciones a través de la API y utilizando directamente su propia identidad, lo que significa que no necesitas mantener un bot o cuenta de servicio como un usuario separado. -{% data variables.product.prodname_github_apps %} can be installed directly on organizations and personal accounts and granted access to specific repositories. Vienen con webhooks integrados y con permisos específicos y delimitados. Cuando configuras tu {% data variables.product.prodname_github_app %}, puedes seleccionar los repositorios a los cuales quieres acceder. Por ejemplo, puedes configurar una app llamada `MyGitHub` que escribe informes de problemas en el repositorio `octocat` y _únicamente_ en dicho repositorio. Para instalar una {% data variables.product.prodname_github_app %}, necesitas ser propietario de la organización o tener permisos administrativos en el repositorio. +Las {% data variables.product.prodname_github_apps %} se pueden instalar en las organizaciones y cuentas personales y se les puede otorgar acceso a repositorios específicos. Vienen con webhooks integrados y con permisos específicos y delimitados. Cuando configuras tu {% data variables.product.prodname_github_app %}, puedes seleccionar los repositorios a los cuales quieres acceder. Por ejemplo, puedes configurar una app llamada `MyGitHub` que escribe informes de problemas en el repositorio `octocat` y _únicamente_ en dicho repositorio. Para instalar una {% data variables.product.prodname_github_app %}, necesitas ser propietario de la organización o tener permisos administrativos en el repositorio. {% data reusables.apps.app_manager_role %} @@ -85,7 +85,7 @@ Considera estas ideas cuando utilices tokens de acceso personal: * Puedes realizar solicitudes cURL de una sola ocasión. * Puedes ejecutar scripts personales. * No configures un script para que lo utilice todo tu equipo o compañía. -* Don't set up a shared personal account to act as a bot user.{% ifversion fpt or ghes > 3.2 or ghae-issue-4374 or ghec %} +* No configures una cuenta personal para que actúe como un usuario bot.{% ifversion fpt or ghes > 3.2 or ghae-issue-4374 or ghec %} * Sí debes establecer un vencimiento para tus tokens de acceso personal para que te ayuden a mantener tu información segura.{% endif %} ## Determinar qué integración debes crear diff --git a/translations/es-ES/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md b/translations/es-ES/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md index fe7a73513c..c58a8537aa 100644 --- a/translations/es-ES/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md +++ b/translations/es-ES/content/developers/apps/getting-started-with-apps/differences-between-github-apps-and-oauth-apps.md @@ -103,7 +103,7 @@ A diferencia de las apps de OAuth, las GitHub Apps tiene permisos específicos q ## Cuentas de máquina vs cuentas de bot -Machine user accounts are OAuth-based personal accounts that segregate automated systems using GitHub's user system. +Las cuentas de usuario máquina son cuentas personales basadas en OAuth que segregan a los sistemas automatizados utilizando l sistema del usuario de GitHub. Las cuentas de bot son específicas para las GitHub Apps y se crean en cada GitHub App. diff --git a/translations/es-ES/content/developers/apps/managing-github-apps/installing-github-apps.md b/translations/es-ES/content/developers/apps/managing-github-apps/installing-github-apps.md index d7c356c1f9..0b6e52594b 100644 --- a/translations/es-ES/content/developers/apps/managing-github-apps/installing-github-apps.md +++ b/translations/es-ES/content/developers/apps/managing-github-apps/installing-github-apps.md @@ -25,7 +25,7 @@ Una vez que creas una GitHub App privada, puedes instalarla en uno de tuos repos 1. Selecciona tu app desde la [página de configuración de GitHub Apps](https://github.com/settings/apps). 2. En la barra lateral izquierda, da clic en **Instalar App**. -3. Click **Install** next to the organization or personal account containing the correct repository. +3. Haz clic en **Instalar** junto a la organización o cuenta personal que contiene el repositorio correcto. 4. Instala al app en todos los repositorios o selecciona los repositorios por separado. ![Permisos de instalación de la aplicación](/assets/images/install_permissions.png) 5. Una vez instalada, verás las opciones de configuración para la app en tu cuenta seleccionada. Puedes hacer cambios aquí, o repetir los pasos anteriores para instalar la app en otra cuenta. diff --git a/translations/es-ES/content/developers/apps/managing-github-apps/making-a-github-app-public-or-private.md b/translations/es-ES/content/developers/apps/managing-github-apps/making-a-github-app-public-or-private.md index e61d1e0376..e2fccc5bb3 100644 --- a/translations/es-ES/content/developers/apps/managing-github-apps/making-a-github-app-public-or-private.md +++ b/translations/es-ES/content/developers/apps/managing-github-apps/making-a-github-app-public-or-private.md @@ -26,7 +26,7 @@ Los flujos de las instalaciones públicas tienen una página de llegada para hab ## Flujo de instalación privada -Los flujos de instalación privada permiten que solo el propietario de la GitHub App pueda instalarla. Limited information about the GitHub App will still exist on a public page, but the **Install** button will only be available to organization administrators or the personal account if the GitHub App is owned by an individual account. Las GitHub Apps {% ifversion fpt or ghes > 3.1 or ghae or ghec %}privadas {% else %}privadas (también conocidas como internas){% endif %} solo pueden instalarse en la cuenta de usuario u organización del propietario. +Los flujos de instalación privada permiten que solo el propietario de la GitHub App pueda instalarla. Aún así, existirá información limitada sobre la GitHub App en una página pública, pero el botón de **Instalar** solo estará disponible para los administradores de la organización o para la cuenta personal si dicha GitHub App le pertenece a una cuenta individual. Las GitHub Apps {% ifversion fpt or ghes > 3.1 or ghae or ghec %}privadas {% else %}privadas (también conocidas como internas){% endif %} solo pueden instalarse en la cuenta de usuario u organización del propietario. ## Cambiar el quién puede instalar tu GitHub App diff --git a/translations/es-ES/content/developers/github-marketplace/github-marketplace-overview/applying-for-publisher-verification-for-your-organization.md b/translations/es-ES/content/developers/github-marketplace/github-marketplace-overview/applying-for-publisher-verification-for-your-organization.md index d2132f4249..3e1b205f0f 100644 --- a/translations/es-ES/content/developers/github-marketplace/github-marketplace-overview/applying-for-publisher-verification-for-your-organization.md +++ b/translations/es-ES/content/developers/github-marketplace/github-marketplace-overview/applying-for-publisher-verification-for-your-organization.md @@ -15,7 +15,7 @@ La verificación del publicador garantiza que {% data variables.product.prodname Una vez que se haya verificado tu organización, podrás publicar planes de pago para tu app. Para obtener más información, consulta la sección "[Configurar los planes de pago para tu listado](/developers/github-marketplace/setting-pricing-plans-for-your-listing)". -Para ofrecer planes de pago para tu app, esta debe pertenecer a una organización y debes tener permisos de propietario en ella. If your app is currently owned by a personal account, you'll need to transfer the ownership of the app to an organization. Para obtener más información, consulta la sección "[Transferir la propiedad de una GitHub App](/developers/apps/transferring-ownership-of-a-github-app)" o "[Transferir la propiedad de una App de OAuth](/developers/apps/transferring-ownership-of-an-oauth-app)". +Para ofrecer planes de pago para tu app, esta debe pertenecer a una organización y debes tener permisos de propietario en ella. Si tu app le pertenece actualmente a una cuenta personal, necesitarás transferir la propiedad de esta a una organización. Para obtener más información, consulta la sección "[Transferir la propiedad de una GitHub App](/developers/apps/transferring-ownership-of-a-github-app)" o "[Transferir la propiedad de una App de OAuth](/developers/apps/transferring-ownership-of-an-oauth-app)". ## Solicitar la verificación de publicador diff --git a/translations/es-ES/content/developers/webhooks-and-events/events/github-event-types.md b/translations/es-ES/content/developers/webhooks-and-events/events/github-event-types.md index b2d8b404dc..e6980f07fd 100644 --- a/translations/es-ES/content/developers/webhooks-and-events/events/github-event-types.md +++ b/translations/es-ES/content/developers/webhooks-and-events/events/github-event-types.md @@ -23,22 +23,22 @@ La API de eventos puede devolver diferentes tipos de ventos que se activan de ac Los objetos de los eventos que se devuelven de las terminales de la API de Eventos tienen la misma estructura. -| Nombre del atributo de la API del Evento | Descripción | -| ---------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `id` | Identificador único para el evento. | -| `type` | El tipo de evento. Los eventos utilizan PascalCase para el nombre. | -| `actor (actor)` | El usuario que activó el evento. | -| `actor.id` | El identificador único para el actor. | -| `actor.login` | El nombre de usuario para el actor. | -| `actor.display_login` | El formato de visualización específico para el nombre de usuario. | -| `actor.gravatar_id` | El identificador único del perfil de Gravatar para el actor. | -| `actor.url` | La URL de la API de REST que se utiliza para recuperar el objeto del usuario, el cual incluye información adicional del usuario. | -| `actor.avatar_url` | La URL de la imagen de perfil del actor. | -| `repo` | El objeto del repositorio en donde ocurrió el evento. | -| `repo.id` | El identificador único del repositorio. | -| `repo.name` | El nombre del repositorio, el cual incluye también al nombre del propietario. For example, `octocat/hello-world` is the name of the `hello-world` repository owned by the `octocat` personal account. | -| `repo.url` | La URL de la API de REST que se utiliza para recuperar el objeto del repositorio, el cual incluye información adicional sobre dicho repositorio. | -| `payload` | El objeto de la carga útil del evento que es exclusivo para el tipo de evento. En el siguiente ejemplo puedes ver el tipo de evento para el objeto de `payload` de la API de eventos. | +| Nombre del atributo de la API del Evento | Descripción | +| ---------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `id` | Identificador único para el evento. | +| `type` | El tipo de evento. Los eventos utilizan PascalCase para el nombre. | +| `actor (actor)` | El usuario que activó el evento. | +| `actor.id` | El identificador único para el actor. | +| `actor.login` | El nombre de usuario para el actor. | +| `actor.display_login` | El formato de visualización específico para el nombre de usuario. | +| `actor.gravatar_id` | El identificador único del perfil de Gravatar para el actor. | +| `actor.url` | La URL de la API de REST que se utiliza para recuperar el objeto del usuario, el cual incluye información adicional del usuario. | +| `actor.avatar_url` | La URL de la imagen de perfil del actor. | +| `repo` | El objeto del repositorio en donde ocurrió el evento. | +| `repo.id` | El identificador único del repositorio. | +| `repo.name` | El nombre del repositorio, el cual incluye también al nombre del propietario. Por ejemplo, `octocat/hello-world` es el nombre del repositorio `hello-world` que pertenece a la cuenta personal `octocat`. | +| `repo.url` | La URL de la API de REST que se utiliza para recuperar el objeto del repositorio, el cual incluye información adicional sobre dicho repositorio. | +| `payload` | El objeto de la carga útil del evento que es exclusivo para el tipo de evento. En el siguiente ejemplo puedes ver el tipo de evento para el objeto de `payload` de la API de eventos. | ### Ejemplo con el objeto de evento WatchEvent diff --git a/translations/es-ES/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md b/translations/es-ES/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md index d7e11dc8d5..857f0e8f78 100644 --- a/translations/es-ES/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md +++ b/translations/es-ES/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md @@ -1185,7 +1185,7 @@ Este evento ocurre cuando una {% data variables.product.prodname_github_app %} e | Clave | Tipo | Descripción | | -------- | ----------- | ---------------------------------------------------------------------------------------- | -| `Acción` | `secuencia` | La acción que se realizó. Esta puede ser una de las siguientes:
  • `created` - Un repositorio se crea.
  • Un repositorio se borra.
  • `archived` - Un repositorio se archiva.
  • `unarchived` - Un repositorio se desarchiva.
  • {% ifversion ghes or ghae %}
  • `anonymous_access_enabled` - A repository is [enabled for anonymous Git access](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise), `anonymous_access_disabled` - A repository is [disabled for anonymous Git access](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise)
  • {% endif %}
  • `edited` - Se edita la información de un repositorio.
  • `renamed` - Un repositorio se renombra.
  • `transferred` - Un repositorio se transfiere.
  • `publicized` - Un repositorio se hace público.
  • `privatized` - Un repositorio se hace privado.
| +| `Acción` | `secuencia` | La acción que se realizó. Esta puede ser una de las siguientes:
  • `created` - Un repositorio se crea.
  • Un repositorio se borra.
  • `archived` - Un repositorio se archiva.
  • `unarchived` - Un repositorio se desarchiva.
  • {% ifversion ghes or ghae %}
  • `anonymous_access_enabled` - Un repositorio está [habilitado para acceso anónimo a Git](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise), `anonymous_access_disabled` - Un repositorio está [inhabilitado para acceso anónimo a Git](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise)
  • {% endif %}
  • `edited` - Se edita la información de un repositorio.
  • `renamed` - Un repositorio se renombra.
  • `transferred` - Un repositorio se transfiere.
  • `publicized` - Un repositorio se hace público.
  • `privatized` - Un repositorio se hace privado.
| {% data reusables.webhooks.repo_desc %} {% data reusables.webhooks.org_desc %} {% data reusables.webhooks.app_desc %} diff --git a/translations/es-ES/content/discussions/managing-discussions-for-your-community/managing-categories-for-discussions.md b/translations/es-ES/content/discussions/managing-discussions-for-your-community/managing-categories-for-discussions.md index 357e1971ed..077c052178 100644 --- a/translations/es-ES/content/discussions/managing-discussions-for-your-community/managing-categories-for-discussions.md +++ b/translations/es-ES/content/discussions/managing-discussions-for-your-community/managing-categories-for-discussions.md @@ -26,7 +26,7 @@ Cada categoría debe tener un nombre único y un emoji distintivo, y se le puede | 📣 Anuncios | Actualizaciones y noticias de los mantenedores de proyecto | Anuncio | | #️⃣ General | Cualquier cosa que sea relevante para el proyecto | Debates abiertos | | 💡 Ideas | Ideas para cambiar o mejorar el proyecto | Debates abiertos | -| 🗳 Polls | Polls with multiple options for the community to vote for and discuss | Polls | +| 🗳 Encuestas | Polls with multiple options for the community to vote for and discuss | Polls | | 🙏 Q&A | Preguntas para que responda la comunidad, con un formato de pregunta/respuesta | Pregunta y respuesta | | 🙌 Mostrar y contar | Creaciones, experimentos, o pruebas relevantes para el proyecto | Debates abiertos | diff --git a/translations/es-ES/content/discussions/managing-discussions-for-your-community/moderating-discussions.md b/translations/es-ES/content/discussions/managing-discussions-for-your-community/moderating-discussions.md index d80c8cb3dc..bc3b88968d 100644 --- a/translations/es-ES/content/discussions/managing-discussions-for-your-community/moderating-discussions.md +++ b/translations/es-ES/content/discussions/managing-discussions-for-your-community/moderating-discussions.md @@ -29,7 +29,7 @@ Es adecuado bloquear una conversación cuando ésta no sea constructiva o viole ## Convertir una propuesta en un debate -Cuando conviertes una propuesta en un debate, ésta se creará automáticamente utilizando el contenido de la propuesta. Las personas con acceso de escritura a un repositorio o repositorio origen para debates de organización pueden convertir las propuestas por lotes con base en las etiquetas. For more information, see "[Managing discussions](/discussions/managing-discussions-for-your-community/managing-discussions)." +Cuando conviertes una propuesta en un debate, ésta se creará automáticamente utilizando el contenido de la propuesta. Las personas con acceso de escritura a un repositorio o repositorio origen para debates de organización pueden convertir las propuestas por lotes con base en las etiquetas. Para obtener más información, consulta la sección "[Administrar los debates](/discussions/managing-discussions-for-your-community/managing-discussions)". {% data reusables.discussions.navigate-to-repo-or-org %} {% data reusables.repositories.sidebar-issues %} diff --git a/translations/es-ES/content/discussions/quickstart.md b/translations/es-ES/content/discussions/quickstart.md index caa4870b24..749906f158 100644 --- a/translations/es-ES/content/discussions/quickstart.md +++ b/translations/es-ES/content/discussions/quickstart.md @@ -48,19 +48,19 @@ Para el caso de los debates, puedes compartir información sobre cómo participa ## Crear un debate nuevo -Cualquier usuario sin autenticar que pueda ver el repositorio podrá crear un debate en este. Similarly, since organization discussions are based on a source repository, any authenticated user who can view the source repository can create a discussion in that organization. +Cualquier usuario sin autenticar que pueda ver el repositorio podrá crear un debate en este. De la misma manera, ya que los debates de las organizaciones se basan en un repositorio origen, cualquier usuario autenticado que pueda ver dicho repositorio podrá crear un debate en esta organización. {% data reusables.discussions.starting-a-discussion %} -## Creating a new poll +## Crear una encuesta nueva -Any authenticated user who can view a repository can create a poll. Similarly, since organization discussions are based on a source repository, any authenticated user who can view the source repository can create a poll in that organization. +Cualquier usuario no autenticado que pueda ver un repositorio podrá crear una encuesta. De la misma manera, ya que los debates de las organizaciones se basan en un repositorio origen, cualquier usuario autenticado que pueda ver dicho repositorio podrá crear una encuesta en esta organización. {% data reusables.discussions.starting-a-poll %} ## Organizar debates -Repository owners and people with write access to the repository can create new categories to keep discussions organized. Similarly, since organization discussions are based on a source repository, repository owners and people with write access to the source repository can create new categories for organization discussions. +Los propietarios de los repositorios y las personas con acceso de escritura en estos pueden crear categorías nuevas para mantener los debates organizados. De la misma manera, ya que los debates de las organizaciones se basan en un repositorio origen, los propietarios de los repositorios y las personas con acceso de escritura con acceso de escritura en el repositorio origen pueden crear categorías nuevas para estos debates. Los colaboradores que participen y creen debates nuevos pueden agruparlos en las categorías existentes más relevantes. Los debates también pueden volver a categorizarse después de su creación. For more information, see "[Managing categories for discussions](/discussions/managing-discussions-for-your-community/managing-categories-for-discussions)." @@ -68,9 +68,9 @@ Los colaboradores que participen y creen debates nuevos pueden agruparlos en las ## Promover las conversaciones sanas -People with write permissions for the repository, or for the source repository for organization discussions, can help surface important conversations by pinning discussions, deleting discussions that are no longer useful or are damaging to the community, and transferring discussions to more relevant repositories owned by the organization. For more information, see "[Managing discussions](/discussions/managing-discussions-for-your-community/managing-discussions)." +Las personas con permisos de escritura en el repositorio o en el repositorio origen para los debates de las organizaciones pueden ayudar a que se noten las conversaciones importantes si las fijan, borran las que ya no son útiles o que dañan a la comunidad y las transfieren a los repositorios más relevantes que le pertenezcan a la organización. Para obtener más información, consulta la sección "[Administrar los debates](/discussions/managing-discussions-for-your-community/managing-discussions)". -People with triage permissions for the repository, or for the source repository for organization discussions, can help moderate a project's discussions by marking comments as answers, locking discussions that are no longer useful or are damaging to the community, and converting issues to discussions when an idea is still in the early stages of development. Para obtener más información, consulta la sección "[Moderar los debates](/discussions/managing-discussions-for-your-community/moderating-discussions)". +Las personas con permiso de clasificación en el repositorio o en el repositorio origen de los debates de la organización pueden ayudar a moderar los debates de un proyecto al marcar los comentarios como respuestas, fijar los debates que ya no son útiles o que dañan a la comunidad y convertir las propuestas en debates cuando una idea aún está en las primeras etapas de desarrollo. Para obtener más información, consulta la sección "[Moderar los debates](/discussions/managing-discussions-for-your-community/moderating-discussions)". ## Pasos siguientes diff --git a/translations/es-ES/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/apply-for-a-student-developer-pack.md b/translations/es-ES/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/apply-for-a-student-developer-pack.md index 891220ffe6..c51dc8da6f 100644 --- a/translations/es-ES/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/apply-for-a-student-developer-pack.md +++ b/translations/es-ES/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-for-your-schoolwork/apply-for-a-student-developer-pack.md @@ -18,7 +18,7 @@ shortTitle: Aplicar para un paquete de estudiante Para ser elegible para el {% data variables.product.prodname_student_pack %}, debes: - Estar inscrito actualmente en un curso que otorgue un título o diploma que garantice un curso de estudio como colegio, escuela secundaria, facultad, universidad, escolarización en casa o institución educativa similar - Tener una dirección de correo electrónico verificable suministrada por la escuela o cargar documentos que demuestren tu situación de estudiante actual -- Have a [{% data variables.product.prodname_dotcom %} personal account](/articles/signing-up-for-a-new-github-account) +- Tener una [cuenta personal de {% data variables.product.prodname_dotcom %}](/articles/signing-up-for-a-new-github-account) - Tener al menos 13 años Entre los documentos que comprueban tu estado actual de alumno se incluye una foto de la ID de tu escuela con la fecha de inscripción actual, horario de clases, transcripción y carta de verificación de inscripción o de afiliación. @@ -27,7 +27,7 @@ Es posible que se te pida periódicamente que vuelvas a verificar tu estado acad {% note %} -**Nota:** No puedes transferir tus descuentos académicos de una cuenta a otra. If you have more than one account you want to apply the discount to, consider [merging](/articles/merging-multiple-user-accounts) your personal accounts and [renaming](/articles/changing-your-github-username) the retained account if desired. +**Nota:** No puedes transferir tus descuentos académicos de una cuenta a otra. Si tienes más de una cuenta para la cual quieras aplicar el descuento, considera [fusionar](/articles/merging-multiple-user-accounts) tus cuentas personales y [renombrar](/articles/changing-your-github-username) la cuenta retenida si así lo quieres. {% endnote %} diff --git a/translations/es-ES/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/apply-for-an-educator-or-researcher-discount.md b/translations/es-ES/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/apply-for-an-educator-or-researcher-discount.md index 5e79fdd690..e8a167f202 100644 --- a/translations/es-ES/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/apply-for-an-educator-or-researcher-discount.md +++ b/translations/es-ES/content/education/explore-the-benefits-of-teaching-and-learning-with-github-education/use-github-in-your-classroom-and-research/apply-for-an-educator-or-researcher-discount.md @@ -21,7 +21,7 @@ shortTitle: Solicitar un descuento {% data reusables.education.educator-requirements %} -For more information about personal accounts on {% data variables.product.product_name %}, see "[Signing up for a new {% data variables.product.prodname_dotcom %} account](/github/getting-started-with-github/signing-up-for-a-new-github-account)." +Para obtener más información acerca de las cuentas de usuario en {% data variables.product.product_name %}, consulta la sección "[Registrarse para una cuenta nueva de {% data variables.product.prodname_dotcom %}](/github/getting-started-with-github/signing-up-for-a-new-github-account)". ## Aplicar para un descuento de educador o investigador diff --git a/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/create-an-assignment-from-a-template-repository.md b/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/create-an-assignment-from-a-template-repository.md index a2ffbc98f7..ee7055c1c6 100644 --- a/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/create-an-assignment-from-a-template-repository.md +++ b/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/create-an-assignment-from-a-template-repository.md @@ -14,7 +14,7 @@ Puedes utilizar un repositorio de plantilla en {% data variables.product.product Para utilizar el repositorio de plantilla para tu tarea, éste debe pertenecer a tu organización, o su visibilidad debe ser pública. -You can reuse an existing assignment, even if it uses a template repository, in any other classroom that you have admin access to, including classrooms in a different organization. For more information, see "[Reuse an assignment](/education/manage-coursework-with-github-classroom/teach-with-github-classroom/reuse-an-assignment)." +Puedes reutilizar una tarea existente, incluso si utiliza un repositorio de plantilla, en cualquier otra aula a la cual tengas acceso administrativo, incluyendo aquellas en una organización diferente. Para obtener más información, consulta la sección "[Reutilizar una tarea](/education/manage-coursework-with-github-classroom/teach-with-github-classroom/reuse-an-assignment)". ## Leer más diff --git a/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/manage-classrooms.md b/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/manage-classrooms.md index be4f4115d3..42cc434643 100644 --- a/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/manage-classrooms.md +++ b/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/manage-classrooms.md @@ -21,7 +21,7 @@ redirect_from: Después de crear un aula, {% data variables.product.prodname_classroom %} te pedirá que invites a los asistentes del maestro (TA) y a los administradores a formar parte de ella. Cada aula puede tener uno o más administradores. Los administradores pueden ser maestros, TA o cualquier otro administrador de curso que quieras tenga control sobre las aulas de {% data variables.product.prodname_classroom %}. -Invite TAs and admins to your classroom by inviting the personal accounts on {% data variables.product.product_name %} to your organization as organization owners and sharing the URL for your classroom. Los propietarios de la organización pueden administrar cualquier aula en ésta. Para obtener más información, consulta la sección "[Roles en una organización](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)" y "[Invitar usuarios para que se unan a tu organización](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization)". +Invita a los TA y administradores a tu aula invitando a sus cuentas personales de {% data variables.product.product_name %} para que formen parte de tu organización como propietarios de la misma y compartiendo la URL de tu aula. Los propietarios de la organización pueden administrar cualquier aula en ésta. Para obtener más información, consulta la sección "[Roles en una organización](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)" y "[Invitar usuarios para que se unan a tu organización](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization)". Cuando termines de utilizar un aula, puedes archivarla y referirte a ella, a su registro de alumnos o a sus tareas posteriormente, o puedes borrarla si ya no la necesitas. @@ -31,7 +31,7 @@ Cuando termines de utilizar un aula, puedes archivarla y referirte a ella, a su Cada aula tiene un registro de alumnos. Un registro de alumnos es una lista de identificadores para los alumnos que participan en tu curso. -When you first share the URL for an assignment with a student, the student must sign into {% data variables.product.product_name %} with a personal account to link the personal account to an identifier for the classroom. After the student links a personal account, you can see the associated personal account in the roster. También puedes ver cuando el alumno acepta o emite una tarea. +Cuando compartes la URL de una tarea con un alumno por primera vez, dicho alumno debe ingresar en {% data variables.product.product_name %} con una cuenta personal para vincularla con un identificador para el aula. Después de que el alumno vincula su cuenta personal, puedes verla asociada en el registro de alumnos. También puedes ver cuando el alumno acepta o emite una tarea. ![Registro de alumnos de un aula](/assets/images/help/classroom/roster-hero.png) @@ -47,7 +47,7 @@ Debes autorizar a la app de OAuth de {% data variables.product.prodname_classroo 1. Da clic en **Aula nueva**. ![Botón de "Aula nueva"](/assets/images/help/classroom/click-new-classroom-button.png) {% data reusables.classroom.guide-create-new-classroom %} -Después de que crees un aula, puedes comenzar a crear tareas para los alumnos. For more information, see "[Use the Git and {% data variables.product.company_short %} starter assignment](/education/manage-coursework-with-github-classroom/use-the-git-and-github-starter-assignment)," "[Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)," "[Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)," or "[Reuse an assignment](/education/manage-coursework-with-github-classroom/teach-with-github-classroom/reuse-an-assignment)." +Después de que crees un aula, puedes comenzar a crear tareas para los alumnos. Para obtener más información, consulta las secciones "[Utilizar la tarea inicial de Git y de {% data variables.product.company_short %}](/education/manage-coursework-with-github-classroom/use-the-git-and-github-starter-assignment)", "[Crear una tarea individual](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)", "[Crear una tarea de grupo](/education/manage-coursework-with-github-classroom/create-a-group-assignment)" o "[Reutilizar una tarea](/education/manage-coursework-with-github-classroom/teach-with-github-classroom/reuse-an-assignment)". ## Crear un registro de alumnos para tu aula diff --git a/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/use-the-git-and-github-starter-assignment.md b/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/use-the-git-and-github-starter-assignment.md index a9615f658f..d579de82e5 100644 --- a/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/use-the-git-and-github-starter-assignment.md +++ b/translations/es-ES/content/education/manage-coursework-with-github-classroom/teach-with-github-classroom/use-the-git-and-github-starter-assignment.md @@ -96,7 +96,7 @@ La tarea inicial de Git & {% data variables.product.company_short %} solo se enc ## Pasos siguientes -- Haz tareas adicionales personalizadas para tu curso. For more information, see "[Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)," "[Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)," and "[Reuse an assignment](/education/manage-coursework-with-github-classroom/teach-with-github-classroom/reuse-an-assignment)." +- Haz tareas adicionales personalizadas para tu curso. Para obtener más información, consulta las secciones "[Crear una tarea individual](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)", "[Crear una tarea grupal](/education/manage-coursework-with-github-classroom/create-a-group-assignment)" y "[Reutilizar una tarea](/education/manage-coursework-with-github-classroom/teach-with-github-classroom/reuse-an-assignment)". ## Leer más diff --git a/translations/es-ES/content/education/quickstart.md b/translations/es-ES/content/education/quickstart.md index 1207b412e1..b0be64825d 100644 --- a/translations/es-ES/content/education/quickstart.md +++ b/translations/es-ES/content/education/quickstart.md @@ -21,10 +21,10 @@ En esta guía, iniciarás con {% data variables.product.product_name %}, regíst ## Crear cuentas en {% data variables.product.product_name %} -First, you'll need to create a free personal account on {% data variables.product.product_name %}. +Primero necesitarás crear una cuenta personal gratuita de {% data variables.product.product_name %}. {% data reusables.accounts.create-account %} -1. Follow the prompts to create your free personal account. +1. Sigue las instrucciones para crear tu cuenta personal gratuita. Después de crear tu cuenta personal, crea una cuenta gratuita de organización. Utilizarás esta cuenta de organización para crear y administrar las aulas {% data variables.product.prodname_classroom %}. diff --git a/translations/es-ES/content/get-started/learning-about-github/about-github-advanced-security.md b/translations/es-ES/content/get-started/learning-about-github/about-github-advanced-security.md index 85e408f6fc..c6a075bf94 100644 --- a/translations/es-ES/content/get-started/learning-about-github/about-github-advanced-security.md +++ b/translations/es-ES/content/get-started/learning-about-github/about-github-advanced-security.md @@ -17,7 +17,7 @@ shortTitle: GitHub Advanced Security ## Acerca de {% data variables.product.prodname_GH_advanced_security %} -{% data variables.product.prodname_dotcom %} tiene muchas características que te ayudan a mejorar y mantener la calidad de tu código. Algunas de estas se incluyen en todos los planes{% ifversion not ghae %}, tales como la gráfica de dependencias y las {% data variables.product.prodname_dependabot_alerts %}{% endif %}. Other security features require a {% data variables.product.prodname_GH_advanced_security %}{% ifversion fpt or ghec %} license to run on repositories apart from public repositories on {% data variables.product.prodname_dotcom_the_website %}{% endif %}.{% ifversion fpt %} For more information, see the [{% data variables.product.prodname_ghe_cloud %} documentation](/enterprise-cloud@latest/get-started/learning-about-github/about-github-advanced-security).{% endif %} +{% data variables.product.prodname_dotcom %} tiene muchas características que te ayudan a mejorar y mantener la calidad de tu código. Algunas de estas se incluyen en todos los planes{% ifversion not ghae %}, tales como la gráfica de dependencias y las {% data variables.product.prodname_dependabot_alerts %}{% endif %}. Otras características de seguridad requieren una licencia de {% data variables.product.prodname_GH_advanced_security %}{% ifversion fpt or ghec %} para ejecutarse en los repositorios diferentes a aquellos públicos en {% data variables.product.prodname_dotcom_the_website %}{% endif %}.{% ifversion fpt %} Para obtener más información, consulta la [documentación de {% data variables.product.prodname_ghe_cloud %}](/enterprise-cloud@latest/get-started/learning-about-github/about-github-advanced-security).{% endif %} {% ifversion ghes or ghec %}Para obtener más información sobre cómo comprar una licencia de {% data variables.product.prodname_GH_advanced_security %}, consulta la sección "[Acerca de la facturación para {% data variables.product.prodname_GH_advanced_security %}](/billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security)".{% elsif ghae %}No se cobra por {% data variables.product.prodname_GH_advanced_security %} en {% data variables.product.prodname_ghe_managed %} durante el lanzamiento beta.{% elsif fpt %}Para comprar una licencia de {% data variables.product.prodname_GH_advanced_security %}, debes estar utilizando {% data variables.product.prodname_enterprise %}. Para obtener más información sobre cómo mejorar a {% data variables.product.prodname_enterprise %} con {% data variables.product.prodname_GH_advanced_security %}, consulta las secciones "[Productos de GitHub](/get-started/learning-about-github/githubs-products)" y "[Acerca de la facturación de {% data variables.product.prodname_GH_advanced_security %}](/billing/managing-billing-for-github-advanced-security/about-billing-for-github-advanced-security)".{% endif %} @@ -29,7 +29,7 @@ Una licencia de {% data variables.product.prodname_GH_advanced_security %} propo - **{% data variables.product.prodname_code_scanning_capc %}** - Busca vulnerabilidades de seguridad potenciales y errores dentro de tu código. Para obtener más información, consulta la sección "[Acerca del {% data variables.product.prodname_code_scanning %}](/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning)". -- **{% data variables.product.prodname_secret_scanning_caps %}** - Detect secrets, for example keys and tokens, that have been checked into the repository.{% if secret-scanning-push-protection %} If push protection is enabled, also detects secrets when they are pushed to your repository. For more information, see "[About {% data variables.product.prodname_secret_scanning %}](/code-security/secret-scanning/about-secret-scanning)" and "[Protecting pushes with {% data variables.product.prodname_secret_scanning %}](/code-security/secret-scanning/protecting-pushes-with-secret-scanning)."{% else %} For more information, see "[About {% data variables.product.prodname_secret_scanning %}](/code-security/secret-scanning/about-secret-scanning)."{% endif %} +- **{% data variables.product.prodname_secret_scanning_caps %}** - Detect secrets, for example keys and tokens, that have been checked into the repository.{% if secret-scanning-push-protection %} If push protection is enabled, also detects secrets when they are pushed to your repository. Para obtener más información, consulta las secciones "[Acerca del {% data variables.product.prodname_secret_scanning %}](/code-security/secret-scanning/about-secret-scanning)" y "[Proteger las subidas con el {% data variables.product.prodname_secret_scanning %}](/code-security/secret-scanning/protecting-pushes-with-secret-scanning)".{% else %} Para obtener más información, consulta la sección "[Acerca del {% data variables.product.prodname_secret_scanning %}](/code-security/secret-scanning/about-secret-scanning)".{% endif %} {% ifversion fpt or ghes > 3.1 or ghec or ghae-issue-4864 %} - **Revisión de dependencias** - Muestra todo el impacto de los cambios a las dependencias y vee los detalles de las versiones vulnerables antes de que fusiones una solicitud de cambios. Para obtener más información, consulta la sección "[Acerca de la revisión de dependencias](/code-security/supply-chain-security/about-dependency-review)". diff --git a/translations/es-ES/content/get-started/onboarding/getting-started-with-github-team.md b/translations/es-ES/content/get-started/onboarding/getting-started-with-github-team.md index 0266154585..0c98068255 100644 --- a/translations/es-ES/content/get-started/onboarding/getting-started-with-github-team.md +++ b/translations/es-ES/content/get-started/onboarding/getting-started-with-github-team.md @@ -8,15 +8,15 @@ versions: Esta guía te mostrará cómo configurar, ajustar y administrar tu cuenta de {% data variables.product.prodname_team %} como propietario de una organización. ## Parte 1: Configurar tu cuenta de {% data variables.product.product_location %} -As the first steps in starting with {% data variables.product.prodname_team %}, you will need to create a personal account or log into your existing account on {% data variables.product.prodname_dotcom %}, create an organization, and set up billing. +Como primeros pasos para comenzar con {% data variables.product.prodname_team %}, necesitarás crear una cuenta personal o ingresar en tu cuenta existente de {% data variables.product.prodname_dotcom %}, crear una organización y configurar la facturación. ### 1. Acerca de las organizaciones Las organizaciones son cuentas compartidas donde las empresas y los proyectos de código abierto pueden colaborar en muchos proyectos a la vez. Los propietarios y los administradores pueden administrar el acceso de los miembros a los datos y los proyectos de la organización con características administrativas y de seguridad sofisticadas. Para obtener más información sobre las características de las organizaciones, consulta la sección "[Acerca de las organizaciones](/organizations/collaborating-with-groups-in-organizations/about-organizations#terms-of-service-and-data-protection-for-organizations)". ### 2. Crear una organización y registrarse para {% data variables.product.prodname_team %} -Before creating an organization, you will need to create a personal account or log in to your existing account on {% data variables.product.product_location %}. Para obtener más información, consulta "[Registrarse para una nueva cuenta de {% data variables.product.prodname_dotcom %}](/get-started/signing-up-for-github/signing-up-for-a-new-github-account)". +Antes de crear una organización, necesitarás crear una cuenta personal o iniciar sesión en tu cuenta existente de {% data variables.product.product_location %}. Para obtener más información, consulta "[Registrarse para una nueva cuenta de {% data variables.product.prodname_dotcom %}](/get-started/signing-up-for-github/signing-up-for-a-new-github-account)". -Once your personal account is set up, you can create an organization and pick a plan. Aquí es donde puedes elegir una suscripción de {% data variables.product.prodname_team %} para tu organización. Para obtener más información, consulta la sección "[Crear una organización nueva desde cero](/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch)". +Una vez que se configura tu cuenta personal, puedes crear una organización y escoger un plan. Aquí es donde puedes elegir una suscripción de {% data variables.product.prodname_team %} para tu organización. Para obtener más información, consulta la sección "[Crear una organización nueva desde cero](/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch)". ### 3. Administrar la facturación de una organización Debes administrar la configuración de facturación, método de pago y características y productos de pago para cada una de tus cuentas y organizaciones personales. Puedes cambiar entre la configuración de tus diversas cuentas utilizando el alternador de contexto en tu configuración. Para obtener más información, consulta la opción "[Cambiar los ajustes de tus cuentas diferentes](/billing/managing-your-github-billing-settings/about-billing-on-github#switching-between-settings-for-your-different-accounts)". diff --git a/translations/es-ES/content/get-started/using-github/supported-browsers.md b/translations/es-ES/content/get-started/using-github/supported-browsers.md index 566f318a77..44e40a98eb 100644 --- a/translations/es-ES/content/get-started/using-github/supported-browsers.md +++ b/translations/es-ES/content/get-started/using-github/supported-browsers.md @@ -16,25 +16,25 @@ versions: ## About web browser support for {% data variables.product.product_name %} -We design {% data variables.product.product_name %} with the latest web browsers in mind. We recommend that you use the latest version of one of the following browsers. +We design {% data variables.product.product_name %} with the latest web browsers in mind. Te recomendamos que utilices la última versión de uno de los siguientes buscadores. - [Apple Safari](https://apple.com/safari) - [Google Chrome](https://google.com/chrome) - [Microsoft Edge](https://microsoft.com/windows/microsoft-edge) - [Mozilla Firefox](https://mozilla.org/firefox) -If you do not use the latest version of a recommended browser, or if you use a browser that is not listed above, {% data variables.product.product_name %} or some features may not work as you expect, or at all. +Si no utilizas la última versión de un buscador recomendado o si utilizas uno que no se liste anteriormente, {% data variables.product.product_name %} o algunas de las características podrían no funcionar como lo esperas, o del todo. -For more information about how we maintain browser compatibility for {% data variables.product.company_short %}'s products, see the [`github/browser-support`](https://github.com/github/browser-support) repository. -## Extended support for recommended web browsers +Para obtener más información sobre cómo mantenemos la compatibilidad de los buscadores para los productos de {% data variables.product.company_short %}, consulta el repositorio [`github/browser-support`](https://github.com/github/browser-support). +## Soporte extendido para los buscadores web recomendados -Some browser vendors provide extended support releases. We do our best to ensure that {% data variables.product.product_name %} functions properly in the latest extended support release for: +Algunos proveedores de buscadores proporcionan lanzamientos con soporte extendido. Hacemos nuestro mejor esfuerzo para garantizar que {% data variables.product.product_name %} funcione adecuadamente en el lanzamiento con soporte extendido más reciente para: -- Chrome's [extended stable channel](https://support.google.com/chrome/a/answer/9027636) -- Edge's [Extended Stable Channel](https://docs.microsoft.com/en-gb/deployedge/microsoft-edge-channels#extended-stable-channel) -- Firefox's [Extended Support Release](https://www.mozilla.org/en-US/firefox/organizations/) (ESR) +- El [canal estable extendido](https://support.google.com/chrome/a/answer/9027636) de Chrome +- El [canal estable extendido](https://docs.microsoft.com/en-gb/deployedge/microsoft-edge-channels#extended-stable-channel) de Edge +- El [lanzamiento de soporte extendido](https://www.mozilla.org/en-US/firefox/organizations/) (ESR) de Firefox -In earlier extended support releases, {% data variables.product.product_name %} may not work as you expect, and some features may not be available. +En lanzamientos de soporte extendido anteriores, {% data variables.product.product_name %} podría no funcionar como lo esperas y algunas características podrían no estar disponibles. ## Construcciones de programador y beta diff --git a/translations/es-ES/content/issues/tracking-your-work-with-issues/deleting-an-issue.md b/translations/es-ES/content/issues/tracking-your-work-with-issues/deleting-an-issue.md index 5fe82210a0..1c9b9e96f7 100644 --- a/translations/es-ES/content/issues/tracking-your-work-with-issues/deleting-an-issue.md +++ b/translations/es-ES/content/issues/tracking-your-work-with-issues/deleting-an-issue.md @@ -15,7 +15,7 @@ topics: - Pull requests --- -You can only delete issues in a repository owned by your personal account. You cannot delete issues in a repository owned by another personal account, even if you are a collaborator there. +Solo puedes borrar las propuestas en un repositorio que le pertenezca a tu cuenta personal. No puedes borrar propuestas en los repositorios que pertenezcan a otra cuenta personal, incluso si eres un colaborador en ella. Para eliminar una propuesta en un repositorio que sea propiedad de una organización, un propietario de la organización debe habilitar la eliminación de una propuesta para los repositorios de la organización, y tú debes tener permisos de propietario o de administración en ese repositorio. Para obtener más información, consulta la sección "[Permitir que se eliminen propuestas en tu organización](/articles/allowing-people-to-delete-issues-in-your-organization)" y "[Roles de repositorio para una organización](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)". diff --git a/translations/es-ES/content/issues/trying-out-the-new-projects-experience/creating-a-project.md b/translations/es-ES/content/issues/trying-out-the-new-projects-experience/creating-a-project.md index 57702b12dc..265c8efb7c 100644 --- a/translations/es-ES/content/issues/trying-out-the-new-projects-experience/creating-a-project.md +++ b/translations/es-ES/content/issues/trying-out-the-new-projects-experience/creating-a-project.md @@ -63,14 +63,14 @@ Los borradores de propuesta pueden tener un título, cuerpo de texto, asignados 3. Selecciona el repositorio en donde se ubica la solicitud de cambios o propuesta. Puedes teclear la parte del nombre de repositorio para reducir tus opciones. 4. Selecciona la propuesta o solicitud de cambios. Puedes teclear parte del título para reducir tus opciones. -#### Adding multiple issues or pull requests from a repository +#### Agregar propuestas o solicitudes de cambio múltiples desde un repositorio -1. On {% data variables.product.product_location %}, navigate to the repository that contains the issues or pull requests you want to add to your project. +1. En {% data variables.product.product_location %}, navega al repositorio que contiene las propuestas o solicitudes de cambio que quieras agregar a tu proyecto. {% data reusables.repositories.sidebar-issue-pr %} -1. To the left of each issue title, select the issues that you want to add to your project. ![Screenshot showing checkbox to select issue or pull request](/assets/images/help/issues/select-issue-checkbox.png) -1. Optionally, to select every issue or pull request on the page, at the top of the list of issues or pull requests, select all. ![Screenshot showing checkbox to select all on screen](/assets/images/help/issues/select-all-checkbox.png) -1. Above the list of issues or pull requests, click **Projects (beta)**. ![Screenshot showing checkbox to select all on screen](/assets/images/help/issues/projects-beta-assign-button.png) -1. Click the projects you want to add the selected issues or pull requests to. ![Screenshot showing checkbox to select all on screen](/assets/images/help/issues/projects-beta-assign-dropdown.png) +1. A la izquierda de cada título de propuesta, selecciona aquellas que quieras agregar a tu proyecto. ![Captura de pantalla que muestra una casilla de verificación para seleccionar una propuesta o solicitud de cambios](/assets/images/help/issues/select-issue-checkbox.png) +1. Opcionalmente, para seleccionar todas las propuestas o solicitudes de cambio en la página, en la parte superior de la lista de propuesta o solicitudes de cambio, selecciona todas. ![Captura de pantalla que muestra la casilla de verificación para seleccionar todo en la pantalla](/assets/images/help/issues/select-all-checkbox.png) +1. Sobre la lista de propuestas o solicitudes de cambio, haz clic en **Proyectos (beta)**. ![Captura de pantalla que muestra la casilla de verificación para seleccionar todo en la pantalla](/assets/images/help/issues/projects-beta-assign-button.png) +1. Haz clic en los proyectos a los que quieras agregar las propuestas o solicitudes de cambio. ![Captura de pantalla que muestra la casilla de verificación para seleccionar todo en la pantalla](/assets/images/help/issues/projects-beta-assign-dropdown.png) #### Asignar un rpoyecto desde dentro de una propuesta o solicitud de cambios @@ -112,19 +112,19 @@ Puedes restablecer los elementos archivados, pero no los borrados. Para obtener ## Restaurar los elementos archivados 1. Navegar a tu proyecto. -1. In the top-right, click {% octicon "kebab-horizontal" aria-label="the kebab icon" %}. -1. In the menu, click **Archived items**. -1. Optionally, to filter the archived items displayed, type your filter into the text box above the list of items. For more information about the available filters, see "[Filtering projects (beta)](/issues/trying-out-the-new-projects-experience/filtering-projects)." +1. En la parte derecha, haz clic en {% octicon "kebab-horizontal" aria-label="the kebab icon" %}. +1. En el menú, haz clic en **Elementos archivados**. +1. Opcionalmente, para filtrar los elementos archivados que se muestran, teclea tu filtro en la caja de texto superior a la lista de elementos. Para obtener más información sobre los filtros disponibles, consulta la sección "[Filtrar proyectos (beta)](/issues/trying-out-the-new-projects-experience/filtering-projects)". - ![Screenshot showing field for filtering archived items](/assets/images/help/issues/filter-archived-items.png) + ![Captura de pantalla que muestra un campo para filtrar los elementos archivados](/assets/images/help/issues/filter-archived-items.png) -1. To the left of each item title, select the items you would like to restore. +1. A la izquierda de cada título de elemento, selecciona aquellos que te gustaría restablecer. - ![Screenshot showing checkboxes next to archived items](/assets/images/help/issues/select-archived-item.png) + ![Captura de pantalla que muestra las casillas de verificación junto a los elementos archivados](/assets/images/help/issues/select-archived-item.png) -1. To restore the selected items, above the list of items, click **Restore**. +1. Para restablecer los elementos seleccionados, sobre la lista de elementos, haz clic en **Restablecer**. - ![Screenshot showing the "Restore" button](/assets/images/help/issues/restore-archived-item-button.png) + ![Captura de pantalla que muestra el botón "Restablecer"](/assets/images/help/issues/restore-archived-item-button.png) ## Agregar campos diff --git a/translations/es-ES/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md b/translations/es-ES/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md index c673712b8d..5395336b54 100644 --- a/translations/es-ES/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md +++ b/translations/es-ES/content/organizations/collaborating-with-groups-in-organizations/accessing-your-organizations-settings.md @@ -25,7 +25,7 @@ shortTitle: Acceder a la configuración de organización {% tip %} -**Tip:** Only organization owners and billing managers can see and change the billing information and the full set of account settings for an organization. Organization moderators only see moderation settings. {% data reusables.organizations.new-org-permissions-more-info %} +**Tip:** Solo los propietarios de la organización y los gerentes de facturación pueden ver y cambiar la información de facturación y todo el conjunto de ajustes de cuenta de la misma. Los moderadores de la organización solo ven los ajustes de moderación. {% data reusables.organizations.new-org-permissions-more-info %} {% endtip %} diff --git a/translations/es-ES/content/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile.md b/translations/es-ES/content/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile.md index 78de2ae9f3..f65f8bc6ae 100644 --- a/translations/es-ES/content/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile.md +++ b/translations/es-ES/content/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile.md @@ -13,66 +13,66 @@ shortTitle: Personalizar el perfil de una organización {% if org-profile-pin-private %} -## About your organization's profile page +## Acerca de la página de perfil de la organización -You can customize your organization's Overview page to show content dedicated to public users or members of the organization. Members of your organization who are signed into {% data variables.product.prodname_dotcom %}, are shown a member view when they visit your organization's profile page. Users who are not members of your organization will be shown a public view. +Puedes personalizar la página de resumen de tu organización para mostrar el contenido dedicado a los usuarios públicos o miembros de la organización. Los miembros de tu organización quienes hayan iniciado sesión en {% data variables.product.prodname_dotcom %} tendrán una vista de miembro cuando visiten la página de perfil de tu organización. Los usuarios que no sean miembros de tu organización tendrán una vista pública. -![Image of an organization profile page](/assets/images/help/organizations/new_organization_page.png) +![Imagen de una página de perfil de organización](/assets/images/help/organizations/new_organization_page.png) {% endif %} ### Repositorios anclados -You can give users easy access to important or frequently used repositories, by choosing up to six repositories for public users and six repositories for members of the organization. Once you pin repositories to your organization profile, the "Pinned" section is shown above the "Repositories" section of the profile page. +Puedes darle a los usuarios un acceso fácil a los repositorios importantes o que se utilizan frecuentemente si eliges hasta seis de ellos para los usuarios públicos y seis para los miembros de la organización. Una vez que fijas los repositorios en tu perfil de organización, la sección de "Fijados" se muestra sobre la de "Repositorios" en la página de perfil. -Only organization owners can pin repositories. For more information, see "[Pinning repositories to your organization's profile](#pinning-repositories-to-your-organizations-profile)." +Solo los propietarios de la organización pueden fijar repositorios. Para obtener más información, consulta la sección "[Fijar repositorios a tu perfil de organización](#pinning-repositories-to-your-organizations-profile)". -### Organization profile READMEs +### README de perfil de organización -You can share information about how to engage with your organization by creating an organization profile README for both public users and members of the organization. {% data variables.product.prodname_dotcom %} te muestra el README del perfil de tu organización en la pestaña de "Resumen" de tu organización. +Puedes compartir información sobre cómo participar con tu organización creando un README de perfil para ella, tanto para sus miembros como para los usuarios públicos. {% data variables.product.prodname_dotcom %} te muestra el README del perfil de tu organización en la pestaña de "Resumen" de tu organización. -You can choose what information to include in your organization profile README. Here are some examples of information that may be helpful. +Puedes elegir qué información incluir en el README de perfil de tu organización. Aquí tienes algunos ejemplos de la información que podría ser útil. - Una sección de "Acerca de" que describa a tu organización - Lineamientos para obtener ayuda en la organización Puedes formatear el texto e incluir emojis, imágenes y GIFs en el README del perfil de tu organización si utilizas el Marcado Enriquecido de {% data variables.product.company_short %}. Para obtener más información, consulta la sección "[Iniciar con la escritura y el formato en {% data variables.product.prodname_dotcom %}](/github/writing-on-github/getting-started-with-writing-and-formatting-on-github)". -## Adding a public organization profile README +## Agregar un README de perfil de organización púbica 1. Si tu organización aun no tiene un repositorio público de `.github`, crea un repositorio público de `.github`. 2. En el repositorio de `.github` de tu organización, crea un archivo de `README.md` en la carpeta `profile`. -3. Confirma los cambios al archivo `README.md`. The content of the `README.md` will appear on your organization's public profile. +3. Confirma los cambios al archivo `README.md`. El contenido del `README.md` aparecerá en el perfil público de tu organización. - ![Image of an organization's public README](/assets/images/help/organizations/org_public_readme.png) + ![Imagen de un README público de una organización](/assets/images/help/organizations/org_public_readme.png) {% if org-profile-pin-private %} -## Adding a member-only organization profile README +## Agregar un README de perfil de organización solo para miembros -1. If your organization does not already have a `.github-private` repository, create a public `.github-private` repository. This action can be performed by any user that has write access to that repository. -2. In your organization's `.github-private` repository, create a `README.md` file in the `profile` folder. -3. Confirma los cambios al archivo `README.md`. The content of the `README.md` will be displayed in the member view of your organization's profile. +1. Si tu organización aún no tiene un repositorio `.github-private`, crea un `.github-private` público. Cualquier usuario que tenga acceso de escritura a dicho repositorio puede llevar a cabo esta acción. +2. En el repositorio `.github-private` de tu organización, crea un archivo `README.md` en la carpeta `profile`. +3. Confirma los cambios al archivo `README.md`. El contenido del `README.md` se mostrará en la vista de miembros del perfil de tu organización. - ![Image of an organization's private README](/assets/images/help/organizations/org_member_readme.png) + ![Imagen del README privado de una organización](/assets/images/help/organizations/org_member_readme.png) -## Pinning repositories to your organization's profile +## Fijar repositorios a tu perfil de organización -You can pin repositories that you want to feature, such as those that are frequently used, to your organization's profile page. To choose which repositories to pin to your organization's profile, you must be an organization owner or administrator. +Puedes fijar repositorios que quieras destacar, tales como aquellos que se utilizan frecuentemente, a la página de perfil de tu organización. Para elegir qué repositorios fijar al perfil de tu organización, debes ser un propietario o administrador de esta. -1. Navigate to your organization's profile page. -2. In the right sidebar of the page in the {% octicon "eye" aria-label="The eye octicon" %} "View as" link, choose the **Public** or **Member** profile view from the dropdown menu. +1. Navega a la página de perfil de tu organización. +2. En la barra lateral derecha de la página, en el enlace de {% octicon "eye" aria-label="The eye octicon" %} "Ver como", elige la vista de perfil **Pública** o de **Miembro** del menú desplegable. - ![Image of the organization profile view dropdown](/assets/images/help/organizations/org_profile_view.png) + ![Imagen del menú desplegable de vista de perfil de la organización](/assets/images/help/organizations/org_profile_view.png) -3. In the pinned repositories section, select **Customize pins**. +3. En la sección de repositorios fijados, selecciona **Personalizar fijados**. - ![Image of the customize pins link](/assets/images/help/organizations/customize_pins_link.png) + ![Imagen del enlace de personalizar fijados](/assets/images/help/organizations/customize_pins_link.png) - - If you haven't yet pinned any repositories to your organization's profile, you'll need to instead click **pin repositories** in the right sidebar of the profile page. ![Image of pin repositories link in right sidebar](/assets/images/help/organizations/pin_repositories_link.png) + - Si aún no has fijado ningún repositorio al perfil de tu organización, necesitarás hacer clic en **fijar repositorios** en la barra lateral derecha de la página de perfil. ![Imagen del enlace de repositorios fijados en la barra lateral derecha](/assets/images/help/organizations/pin_repositories_link.png) -4. In the "Edit pinned repositories" dialog box, select a combination of up to six public, {% ifversion not fpt %}private, or internal{% else %}or private{% endif %} repositories to display. +4. En la caja de diálogo "Editar repositorios fijados", selecciona una combinación de hasta seis repositorios públicos, {% ifversion not fpt %}privados o internos{% else %}o privados{% endif %} para mostrar. - ![Image of pinned repo dialog](/assets/images/help/organizations/pinned_repo_dialog.png) + ![Imagen del diálogo de un repositorio fijado](/assets/images/help/organizations/pinned_repo_dialog.png) 5. Haz clic en **Save pins (Guardar anclados)**. diff --git a/translations/es-ES/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md b/translations/es-ES/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md index 1958c9600c..fc95157a9a 100644 --- a/translations/es-ES/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md +++ b/translations/es-ES/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md @@ -1,12 +1,10 @@ --- title: Ver información de tu organización intro: 'La información de tu organización brinda datos acerca de la actividad, las contribuciones y las dependencias de tu organización.' -product: '{% data reusables.gated-features.org-insights %}' redirect_from: - /articles/viewing-insights-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/viewing-insights-for-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations @@ -15,11 +13,13 @@ shortTitle: Ver las perspectivas de la organización permissions: Organization members can view organization insights. --- +## Acerca de las perspectivas de la organización + Puedes utilizar la información sobre la actividad de la organización para ayudarte a comprender mejor cómo los miembros de tu organización están utilizando {% data variables.product.product_name %} para colaborar y trabajar con el código. La información sobre las dependencias puede ayudarte a rastrear, informar y actuar en relación al uso del código abierto de tu organización. {% note %} -**Note:** To view organization insights, your organization must use {% data variables.product.prodname_ghe_cloud %}. {% data reusables.enterprise.link-to-ghec-trial %} +**Nota:** Para ver las perspectivas de la organización, esta debe utilizar {% data variables.product.prodname_ghe_cloud %}. {% data reusables.enterprise.link-to-ghec-trial %} {% endnote %} diff --git a/translations/es-ES/content/organizations/collaborating-with-your-team/about-team-discussions.md b/translations/es-ES/content/organizations/collaborating-with-your-team/about-team-discussions.md index 630523d4e3..464523ba2f 100644 --- a/translations/es-ES/content/organizations/collaborating-with-your-team/about-team-discussions.md +++ b/translations/es-ES/content/organizations/collaborating-with-your-team/about-team-discussions.md @@ -46,7 +46,7 @@ Para obtener más información, consulta la sección {% ifversion fpt or ghae or ## Organization discussions -You can also use organization discussions to facilitate conversations across your organization. For more information, see "[Enabling or disabling GitHub Discussions for an organization](/organizations/managing-organization-settings/enabling-or-disabling-github-discussions-for-an-organization)." +También puedes utilizar los debates de la organización para facilitar las conversaciones en ella. For more information, see "[Enabling or disabling GitHub Discussions for an organization](/organizations/managing-organization-settings/enabling-or-disabling-github-discussions-for-an-organization)." {% endif %} diff --git a/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md b/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md index 27bc9f2959..e928499636 100644 --- a/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md +++ b/translations/es-ES/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md @@ -24,7 +24,7 @@ Puedes ver y revocar la identidad vinculada de cada miembro, sesiones activas y {% data reusables.saml.about-linked-identities %} -Cuando esté disponible, la entrada incluirá datos de SCIM. For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +Cuando esté disponible, la entrada incluirá datos de SCIM. Para obtener más información, consulta la sección "[SCIM para las organizaciones](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)". {% warning %} diff --git a/translations/es-ES/content/organizations/managing-access-to-your-organizations-repositories/reinstating-a-former-outside-collaborators-access-to-your-organization.md b/translations/es-ES/content/organizations/managing-access-to-your-organizations-repositories/reinstating-a-former-outside-collaborators-access-to-your-organization.md index 738dd66569..0bf5a4882c 100644 --- a/translations/es-ES/content/organizations/managing-access-to-your-organizations-repositories/reinstating-a-former-outside-collaborators-access-to-your-organization.md +++ b/translations/es-ES/content/organizations/managing-access-to-your-organizations-repositories/reinstating-a-former-outside-collaborators-access-to-your-organization.md @@ -33,7 +33,7 @@ Cuando reinstalas un colaborador externo antiguo, puedes restaurar lo siguiente: **Tips**: - - Only organization owners can reinstate outside collaborators' access to an organization.{% if prevent-org-admin-add-outside-collaborator %} Enterprise owners may further restrict the ability to reinstate outside collaborators' access to enterprise owners only.{% endif %} For more information, see "[Roles in an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)." + - Solo los propietarios de las organizaciones pueden reinstaurar el acceso de un colaborador externo a una organización.{% if prevent-org-admin-add-outside-collaborator %} Los propietarios de las empresas pueden restringir aún más la capacidad para reinstaurar el acceso de los colaboradores externos para que esto solo ellos puedan hacerlo.{% endif %} Para obtener más información, consulte la sección "[Roles de una organización](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization)". - Puede que el flujo de reinstalación de un miembro en {% data variables.product.product_location %} utilice el término "miembro" para describir la reinstalación de un colaborador externo, pero si reinstalas a esta persona y mantienes sus privilegios previos, solo tendrá los [permisos de colaborador externo](/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization#outside-collaborators) anteriores.{% ifversion fpt or ghec %} - Si tu organización tiene una suscripción de pago por usuario, debe de existir una licencia sin utilizarse antes de que puedas invitar a un nuevo miembro para que se una a la organización o antes de reinstaurar a algún miembro previo de la misma. Para obtener más información, consulta "[Acerca del precio por usuario](/articles/about-per-user-pricing)."{% endif %} diff --git a/translations/es-ES/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md b/translations/es-ES/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md index 40337d492a..5aa026d2bd 100644 --- a/translations/es-ES/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md +++ b/translations/es-ES/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md @@ -1,6 +1,6 @@ --- title: ¿Puedo crear cuentas para personas en mi organización? -intro: 'While you can add users to an organization you''ve created, you can''t create personal accounts on behalf of another person.' +intro: 'Si bien puedes agregar usuarios a una organización que has creado, no puedes crear cuentas personales en nombre de otra persona.' redirect_from: - /articles/can-i-create-accounts-for-those-in-my-organization - /articles/can-i-create-accounts-for-people-in-my-organization @@ -14,12 +14,12 @@ topics: shortTitle: Crear cuentas para las personas --- -## About personal accounts +## Acerca de tus cuentas personales -Because you access an organization by logging in to a personal account, each of your team members needs to create their own personal account. Después de que tengas nombres de usuario para cada una de las personas que quieras agregar a tu organización, podrás agregarlos a los equipos. +Ya que accedes a una organización al iniciar sesión en una cuenta personal, cada uno de los miembros de tu equipo necesita crear su propia cuenta personal. Después de que tengas nombres de usuario para cada una de las personas que quieras agregar a tu organización, podrás agregarlos a los equipos. {% ifversion fpt or ghec %} -{% ifversion fpt %}Organizations that use {% data variables.product.prodname_ghe_cloud %}{% else %}You{% endif %} can use SAML single sign-on to centrally manage the access that personal accounts have to the organization's resources through an identity provider (IdP). Para obtener más información, consulta la sección "[Acerca de la administración de identidad y acceso con el inicio de sesión único de SAML](/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on){% ifversion fpt %}" en la documentación de {% data variables.product.prodname_ghe_cloud %}.{% else %}".{% endif %} +{% ifversion fpt %}Las organizaciones que utilizan {% data variables.product.prodname_ghe_cloud %} pueden{% else %}Puedes{% endif %} utilizar el inicio de sesión único de SAML para administrar centralmente el acceso que tienen las cuentas personales a los recursos de la organización mediante un proveedor de identidad (IdP). Para obtener más información, consulta la sección "[Acerca de la administración de identidad y acceso con el inicio de sesión único de SAML](/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on){% ifversion fpt %}" en la documentación de {% data variables.product.prodname_ghe_cloud %}.{% else %}".{% endif %} También puedes considerar los {% data variables.product.prodname_emus %}. {% data reusables.enterprise-accounts.emu-short-summary %} {% endif %} diff --git a/translations/es-ES/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md b/translations/es-ES/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md index eb6b8fa7ca..b534854920 100644 --- a/translations/es-ES/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md +++ b/translations/es-ES/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md @@ -1,12 +1,10 @@ --- title: Cambiar la visibilidad de la información de dependencias de la organización intro: Puedes permitir que todos los miembros de la organización vean información de dependencias para tu organización o limiten la visualización de los propietarios de la organización. -product: '{% data reusables.gated-features.org-insights %}' redirect_from: - /articles/changing-the-visibility-of-your-organizations-dependency-insights - /github/setting-up-and-managing-organizations-and-teams/changing-the-visibility-of-your-organizations-dependency-insights versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/es-ES/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md b/translations/es-ES/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md index 99787062a1..a6be130d95 100644 --- a/translations/es-ES/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md +++ b/translations/es-ES/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md @@ -24,11 +24,11 @@ miniTocMaxHeadingLevel: 3 Puedes habilitar {% data variables.product.prodname_actions %} para todos los repositorios en tu organización. {% data reusables.actions.enabled-actions-description %}Puedes inhabilitar {% data variables.product.prodname_actions %} para todos los repositorios en tu organización. {% data reusables.actions.disabled-actions-description %} -Alternatively, you can enable {% data variables.product.prodname_actions %} for all repositories in your organization but limit the actions {% if actions-workflow-policy %}and reusable workflows{% endif %} a workflow can run. +Como alternativa, puedes habilitar las {% data variables.product.prodname_actions %} para todos los repositorios de tu organización, pero limitar las acciones {% if actions-workflow-policy %}y flujos de trabajo reutilizables{% endif %} que puede ejecutar un flujo de trabajo. ## Administrar los permisos de {% data variables.product.prodname_actions %} para tu organización -You can choose to disable {% data variables.product.prodname_actions %} for all repositories in your organization, or only allow specific repositories. You can also limit the use of public actions{% if actions-workflow-policy %} and reusable workflows{% endif %}, so that people can only use local actions {% if actions-workflow-policy %}and reusable workflows{% endif %} that exist in your {% ifversion ghec or ghes or ghae %}enterprise{% else %}organization{% endif %}. +Puedes elegir inhabilitar las {% data variables.product.prodname_actions %} para todos los repositorios de tu organización o permitir únicamente aquellos específicos. También puedes limitar el uso de acciones públicas{% if actions-workflow-policy %} y flujos de trabajo reutilizables{% endif %} para que las personas utilicen únicamente las acciones {% if actions-workflow-policy %}y los flujos de trabajo reutilizables{% endif %} locales que existan en tu {% ifversion ghec or ghes or ghae %}empresa{% else %}organización{% endif %}. {% note %} @@ -60,9 +60,9 @@ You can choose to disable {% data variables.product.prodname_actions %} for all {% if actions-workflow-policy %} ![Add actions and reusable workflows to the allow list](/assets/images/help/organizations/actions-policy-allow-list-with-workflows.png) {%- elsif ghes %} - ![Add actions to the allow list](/assets/images/help/organizations/actions-policy-allow-list.png) + ![Agregar acciones a la lista de elementos permitidos](/assets/images/help/organizations/actions-policy-allow-list.png) {%- else %} - ![Add actions to the allow list](/assets/images/enterprise/github-ae/organizations/actions-policy-allow-list.png) + ![Agregar acciones a la lista de elementos permitidos](/assets/images/enterprise/github-ae/organizations/actions-policy-allow-list.png) {%- endif %} 1. Haz clic en **Save ** (guardar). diff --git a/translations/es-ES/content/organizations/managing-organization-settings/enabling-or-disabling-github-discussions-for-an-organization.md b/translations/es-ES/content/organizations/managing-organization-settings/enabling-or-disabling-github-discussions-for-an-organization.md index 8163206a98..0560a78451 100644 --- a/translations/es-ES/content/organizations/managing-organization-settings/enabling-or-disabling-github-discussions-for-an-organization.md +++ b/translations/es-ES/content/organizations/managing-organization-settings/enabling-or-disabling-github-discussions-for-an-organization.md @@ -14,7 +14,7 @@ shortTitle: Organization discussions {% data reusables.discussions.about-organization-discussions %} -You can also manage repository discussions. For more information, see "[Enabling or disabling GitHub Discussions for a repository](/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/enabling-or-disabling-github-discussions-for-a-repository)" and "[Managing discussion creation for repositories in your organization](/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization)." +You can also manage repository discussions. Para obtener más información, consulta la sección "[Habilitar o inhabilitar los debates de GitHub para un repositorio](/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/enabling-or-disabling-github-discussions-for-a-repository)" y "[Administrar la creación de debates para los repositorios en tu organización](/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization)". ## Enabling or disabling {% data variables.product.prodname_discussions %} for your organization diff --git a/translations/es-ES/content/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization.md b/translations/es-ES/content/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization.md index fe47e36086..3f9a838fd9 100644 --- a/translations/es-ES/content/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization.md +++ b/translations/es-ES/content/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization.md @@ -10,7 +10,7 @@ versions: topics: - Organizations - Teams -shortTitle: Manage repository discussions +shortTitle: Administrar los debates de repositorio --- @@ -28,4 +28,4 @@ Predeterminadamente, los miembros de la organización que tengan acceso de lectu - "[Acerca de los debates](/discussions/collaborating-with-your-community-using-discussions/about-discussions)" - "[Administrar debates para tu comunidad](/discussions/managing-discussions-for-your-community)" -- "[Enabling or disabling GitHub Discussions for an organization](/organizations/managing-organization-settings/enabling-or-disabling-github-discussions-for-an-organization)" +- "[Habilitar o inhabilitar los debates de GitHub para una organización](/organizations/managing-organization-settings/enabling-or-disabling-github-discussions-for-an-organization)". diff --git a/translations/es-ES/content/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization.md b/translations/es-ES/content/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization.md index 16c9efb99f..d954416025 100644 --- a/translations/es-ES/content/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization.md +++ b/translations/es-ES/content/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization.md @@ -18,9 +18,9 @@ shortTitle: Administrar la publicación de sitios de páginas --- {% ifversion fpt %} -You can choose to allow or disallow organization members from publishing {% data variables.product.prodname_pages %} sites. Organizations that use {% data variables.product.prodname_ghe_cloud %} can also choose to allow publicly published sites, privately published sites, both, or neither. Para obtener más información, consulta la [documentación de {% data variables.product.prodname_ghe_cloud %}](/enterprise-cloud@latest/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization). +Puedes elegir permitir o dejar de permitir que los miembros de las organizaciones publiquen los sitios de {% data variables.product.prodname_pages %}. Las organizaciones que utilizan {% data variables.product.prodname_ghe_cloud %} también pueden elegir permitir sitios publicados abiertamente, en privado, ambos o ninguno. Para obtener más información, consulta la [documentación de {% data variables.product.prodname_ghe_cloud %}](/enterprise-cloud@latest/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization). {% elsif ghec %} -You can choose to allow organization members to create publicly published sites, privately published sites, both, or neither. Para obtener más información acerca del control de accesos de los sitios de {% data variables.product.prodname_pages %}, consulta la sección "[Cambiar la visibilidad de tu sitio de {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site)". +Puedes elegir el permitir a los miembros de la organización crear sitios que se publican abiertamente, en privado, ambos o ninguno. Para obtener más información acerca del control de accesos de los sitios de {% data variables.product.prodname_pages %}, consulta la sección "[Cambiar la visibilidad de tu sitio de {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site)". {% endif %} Si dejas de permitir la publicación de sitios de {% data variables.product.prodname_pages %}, cualquier sitio que ya se haya publicado permanecerá así. Puedes anular la publicación del sitio manualmente. Para obtener más información, consulta la sección "[Anular la publicación de un sitio de {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/unpublishing-a-github-pages-site)". @@ -28,12 +28,12 @@ Si dejas de permitir la publicación de sitios de {% data variables.product.prod {% data reusables.profile.access_org %} {% data reusables.profile.org_settings %} {% data reusables.organizations.member-privileges %}{% ifversion fpt %} -1. Under "Pages creation, select or deselect **Public**. +1. Debajo de "Creación de páginas", selecciona o deselecciona **Público**. - ![Checkboxes to allow or disallow creation of {% data variables.product.prodname_pages %} sites](/assets/images/help/organizations/github-pages-creation-checkboxes-fpt.png){% elsif ghec %} + ![Casillas de verificación para permitir o dejar de permitir la creación de sitios de {% data variables.product.prodname_pages %}](/assets/images/help/organizations/github-pages-creation-checkboxes-fpt.png){% elsif ghec %} 1. Debajo de "Creación de páginas", selecciona las visibilidades que quieras permitir y deselecciona aquellas que quieres dejar de permitir. - ![Checkboxes to allow or disallow creation of {% data variables.product.prodname_pages %} sites](/assets/images/help/organizations/github-pages-creation-checkboxes.png){% else %} + ![Casillas de verificación para permitir o dejar de permitir la creación de sitios de {% data variables.product.prodname_pages %}](/assets/images/help/organizations/github-pages-creation-checkboxes.png){% else %} 1. Debajo de "Creación de páginas", selecciona y deselecciona **Permitir a los miembros publicar sitios**. ![Casilla deseleccionada para la opción "Permitir que los miembros publiquen sitios"](/assets/images/help/organizations/org-settings-pages-disable-publication-checkbox.png){% endif %}{% ifversion fpt or ghec %} diff --git a/translations/es-ES/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md b/translations/es-ES/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md index a4537d4fdc..ebc25a7114 100644 --- a/translations/es-ES/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md +++ b/translations/es-ES/content/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators.md @@ -25,7 +25,7 @@ Predeterminadamente, cualquiera con acceso administrativo en un repositorio pued {% endnote %} {% endif %} -{% ifversion ghec %}If your organization is owned by an enterprise account, you{% else %}You{% endif %} may not be able to configure this setting for your organization, if an enterprise owner has set a policy at the enterprise level. Para obtener más información, consulta la sección "[Requerir políticas de administración de repositorios en tu empresa]{% ifversion ghec %}(/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-inviting-collaborators-to-repositories)"{% else %}(/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-inviting-outside-collaborators-to-repositories){% endif %}". +{% ifversion ghec %}Si tu organización el pertenece a una cuenta empresarial, no podrás{% else %}No podrás{% endif %}configurar este ajuste para ella en caso de que un propietario de empresa haya configurado una política a nivel empresarial. Para obtener más información, consulta la sección "[Requerir políticas de administración de repositorios en tu empresa]{% ifversion ghec %}(/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-inviting-collaborators-to-repositories)"{% else %}(/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-inviting-outside-collaborators-to-repositories){% endif %}". {% data reusables.organizations.outside-collaborators-use-seats %} diff --git a/translations/es-ES/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md b/translations/es-ES/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md index 399a2acef3..256e5a43c6 100644 --- a/translations/es-ES/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md +++ b/translations/es-ES/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md @@ -101,8 +101,8 @@ Some of the features listed below are limited to organizations using {% data var | Create project boards (see "[Project board permissions for an organization](/articles/project-board-permissions-for-an-organization)") | **X** | **X** | **X** | | **X** | | See all organization members and teams | **X** | **X** | **X** | | **X** | | @mention any visible team | **X** | **X** | **X** | | **X** | -| Can be made a *team maintainer* | **X** | **X** | **X** | | **X** | -| View organization insights (see "[Viewing insights for your organization](/articles/viewing-insights-for-your-organization)") | **X** | **X** | **X** | | **X** | +| Can be made a *team maintainer* | **X** | **X** | **X** | | **X** |{% ifversion ghec %} +| View organization insights (see "[Viewing insights for your organization](/articles/viewing-insights-for-your-organization)") | **X** | **X** | **X** | | **X** |{% endif %} | View and post public team discussions to **all teams** (see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions)") | **X** | **X** | **X** | | **X** | | View and post private team discussions to **all teams** (see "[About team discussions](/organizations/collaborating-with-your-team/about-team-discussions)") | **X** | | | | | | Edit and delete team discussions in **all teams** (see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments)") | **X** | | | | | @@ -110,8 +110,8 @@ Some of the features listed below are limited to organizations using {% data var | Hide comments on writable commits, pull requests, and issues (see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)") | **X** | **X** | **X** | | **X** | | Hide comments on _all_ commits, pull requests, and issues (see "[Managing disruptive comments](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)") | **X** | | **X** | | **X** | | Block and unblock non-member contributors (see "[Blocking a user from your organization](/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization)") | **X** | | **X** | | | -| Limit interactions for certain users in public repositories (see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization)") | **X** | | **X** | | | -| Manage viewing of organization dependency insights (see "[Changing the visibility of your organization's dependency insights](/articles/changing-the-visibility-of-your-organizations-dependency-insights)") | **X** | | | | | +| Limit interactions for certain users in public repositories (see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization)") | **X** | | **X** | | |{% ifversion ghec %} +| Manage viewing of organization dependency insights (see "[Changing the visibility of your organization's dependency insights](/articles/changing-the-visibility-of-your-organizations-dependency-insights)") | **X** | | | | |{% endif %} | Set a team profile picture in **all teams** (see "[Setting your team's profile picture](/articles/setting-your-team-s-profile-picture)") | **X** | | | | | | Sponsor accounts and manage the organization's sponsorships (see "[Sponsoring open-source contributors](/sponsors/sponsoring-open-source-contributors)") | **X** | | | **X** | **X** | | Manage email updates from sponsored accounts (see "[Managing updates from accounts your organization's sponsors](/organizations/managing-organization-settings/managing-updates-from-accounts-your-organization-sponsors)") | **X** | | | | | diff --git a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md index 1db9ea3a76..91ce1f4dc4 100644 --- a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md +++ b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md @@ -46,7 +46,7 @@ Los miembros de una organización también deben contar con una sesión activa d {% data reusables.saml.saml-supported-idps %} -Algunos IdP admiten acceso de suministro a una organización de {% data variables.product.prodname_dotcom %} a través de SCIM. For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +Algunos IdP admiten acceso de suministro a una organización de {% data variables.product.prodname_dotcom %} a través de SCIM. Para obtener más información, consulta la sección "[SCIM para las organizaciones](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)". {% data reusables.scim.enterprise-account-scim %} @@ -56,7 +56,7 @@ Una vez que activas SAML SSO, hay varias maneras de poder agregar nuevos miembro Para aprovisionar nuevos usuarios sin una invitación de un propietario de la organización, puedes usar la URL `https://github.com/orgs/ORGANIZATION/sso/sign_up`, reemplazando _ORGANIZATION_ con el nombre de tu organización. Por ejemplo, puedes configurar tu IdP para que cualquiera con acceso al IdP pueda hacer clic en el tablero del IdP para unirse a tu organización de {% data variables.product.prodname_dotcom %}. -Si tu IdP admite SCIM, {% data variables.product.prodname_dotcom %} puede invitar automáticamente a los miembros para que se unan a tu organización cuando les otorgas acceso en tu IdP. Si eliminas el acceso de un miembro a tu organización de {% data variables.product.prodname_dotcom %} en tu IdP de SAML, éste se eliminará automáticamente de la organización de{% data variables.product.prodname_dotcom %}. For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +Si tu IdP admite SCIM, {% data variables.product.prodname_dotcom %} puede invitar automáticamente a los miembros para que se unan a tu organización cuando les otorgas acceso en tu IdP. Si eliminas el acceso de un miembro a tu organización de {% data variables.product.prodname_dotcom %} en tu IdP de SAML, éste se eliminará automáticamente de la organización de{% data variables.product.prodname_dotcom %}. Para obtener más información, consulta la sección "[SCIM para las organizaciones](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)". {% data reusables.organizations.team-synchronization %} @@ -64,6 +64,6 @@ Si tu IdP admite SCIM, {% data variables.product.prodname_dotcom %} puede invita ## Leer más -- "[SAML configuration reference](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)" +- "[Referencia de configuración de SAML](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)" - "[Acerca de la autenticación de dos factores y el inicio de sesión único de SAML ](/articles/about-two-factor-authentication-and-saml-single-sign-on)" - "[Acerca de la autenticación con el inicio de sesión único de SAML](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)" diff --git a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md index 6e75d031e4..cc33ceeed3 100644 --- a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md +++ b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md @@ -18,7 +18,7 @@ Puedes controlar el acceso a tu organización en {% data variables.product.produ {% data reusables.saml.ghec-only %} -El SSO de SAML controla y asegura el acceso a los recursos organizacionales como los repositorios, informes de problemas y solicitudes de extracción. SCIM agrega, administra y elimina automáticamente el acceso a tu organización en {% data variables.product.product_location %} cuando haces cambios en Okta. For more information, see "[About identity and access management with SAML single sign-on](/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on)" and "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +El SSO de SAML controla y asegura el acceso a los recursos organizacionales como los repositorios, informes de problemas y solicitudes de extracción. SCIM agrega, administra y elimina automáticamente el acceso a tu organización en {% data variables.product.product_location %} cuando haces cambios en Okta. Para obtener más información, consulta las secciones "[Acerca de la administración de accesos e identidad con el inicio de sesión único de SAML](/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on)" y "[Acerca de SCIM para las organizaciones](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)". Después de que habilites SCIM, las siguientes características de aprovisionamiento estarán disponibles para cualquier usuario al que asignes tu aplicación de {% data variables.product.prodname_ghe_cloud %} en Okta. @@ -41,9 +41,9 @@ Como alternativa, puedes configurar el SSO de SAML para una empresa utilizando O {% data reusables.scim.dedicated-configuration-account %} -1. Sign into {% data variables.product.prodname_dotcom_the_website %} using an account that is an organization owner and is ideally used only for SCIM configuration. -1. To create an active SAML session for your organization, navigate to `https://github.com/orgs/ORGANIZATION-NAME/sso`. Para obtener más información, consulta la sección "[Acerca de la autenticación con el inicio de sesión único de SAML](/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on#about-oauth-apps-github-apps-and-saml-sso)". -1. Navigate to Okta. +1. Inicia sesión en {% data variables.product.prodname_dotcom_the_website %} utilizando una cuenta que sea un propietario de organización y que se utilice idealmente solo para la configuración de SCIM. +1. Para crear una sesión activa de SAML para tu organización, navega a `https://github.com/orgs/ORGANIZATION-NAME/sso`. Para obtener más información, consulta la sección "[Acerca de la autenticación con el inicio de sesión único de SAML](/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on#about-oauth-apps-github-apps-and-saml-sso)". +1. Navega a Okta. {% data reusables.saml.okta-dashboard-click-applications %} {% data reusables.saml.okta-applications-click-ghec-application-label %} {% data reusables.saml.okta-provisioning-tab %} diff --git a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md index 9f7361b6c0..d0087a67d0 100644 --- a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md +++ b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md @@ -1,6 +1,6 @@ --- title: Conectar tu proveedor de identidad con tu organización -intro: 'To use SAML single sign-on and SCIM, you must connect your identity provider (IdP) to your organization on {% data variables.product.product_name %}.' +intro: 'Para utilizar el inicio de sesión único de SAML y SCIM, debes conectar tu proveedor de identidad (IdP) a tu organización en {% data variables.product.product_name %}.' redirect_from: - /articles/connecting-your-identity-provider-to-your-organization - /github/setting-up-and-managing-organizations-and-teams/connecting-your-identity-provider-to-your-organization @@ -13,7 +13,7 @@ topics: shortTitle: Conectar un IdP --- -## About connection of your IdP to your organization +## Acerca de la conexión de tu IdP a tu organización Cuando habilitas el SSO de SAML para tu organización de {% data variables.product.product_name %}, conectas tu proveedor de identidad (IdP) a ella. Para obtener más información, consulta "[Habilitar y probar el inicio de sesión único para tu organización](/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization)". @@ -29,7 +29,7 @@ Puedes encontrar los detalles de implementación de SAML y de SCIM para tu IdP e {% note %} -**Nota:** Los proveedores de identidad que soportan {% data variables.product.product_name %} SCIM son Azure AD, Okta y OneLogin. For more information about SCIM, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +**Nota:** Los proveedores de identidad que soportan {% data variables.product.product_name %} SCIM son Azure AD, Okta y OneLogin. Para obtener más información sobre SCIM, consulta la sección "[Acerca de SCIM para las organizaciones](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)". {% data reusables.scim.enterprise-account-scim %} @@ -37,4 +37,4 @@ Puedes encontrar los detalles de implementación de SAML y de SCIM para tu IdP e ## Metadatos SAML -For more information about SAML metadata for your organization, see "[SAML configuration reference](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)." +Para obtener más información sobre los metadatos de SAML para tu organización, consulta la sección "[Referencia de configuración de SAML](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)". diff --git a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md index 11b3e8cc81..bbdf924d1c 100644 --- a/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md +++ b/translations/es-ES/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md @@ -59,4 +59,4 @@ Haz clic en **Save ** (guardar). ![Botón para guardar la configuración de SAML ## Leer más - "[Acerca de la administración de identidad y el acceso con el inicio de sesión único de SAML](/articles/about-identity-and-access-management-with-saml-single-sign-on)" -- "[SAML configuration reference](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)" +- "[Referencia de configuración de SAML](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)" diff --git a/translations/es-ES/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md b/translations/es-ES/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md index 2fd1623584..e3ee3fb512 100644 --- a/translations/es-ES/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md +++ b/translations/es-ES/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md @@ -46,7 +46,7 @@ Para administrar el acceso de un repositorio para cualquier equipo de {% data va Después de que conectas un equipo a un grupo de IdP, la sincronización de equipos agregará a cada miembro del grupo de IdP al equipo correspondiente en {% data variables.product.product_name %} únicamente si: - La persona es un miembro de la organización en {% data variables.product.product_name %}. -- The person has already logged in with their personal account on {% data variables.product.product_name %} and authenticated to the organization or enterprise account via SAML single sign-on at least once. +- La persona ya inició sesión con su cuenta personal de {% data variables.product.product_name %} y se autenticó en la cuenta de empresa u organización a través del inicio de sesión único de SAML por lo menos una vez. - La identidad de SSO de la persona es miembro del grupo de IdP. Los equipos o miembros del grupo existentes que no cumplan con estos criterios se eliminarán automáticamente del equipo en {% data variables.product.product_name %} y perderán acceso a los repositorios. El revocar la identidad ligada a un usuario también eliminará a dicho usuario de cualquier equipo que se encuentre mapeado en los grupos de IdP. Para obtener más información, consulta las secciones "[Ver y administrar el acceso SAML de los miembros a tu organización](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization#viewing-and-revoking-a-linked-identity)" y "[Ver y administrar el acceso SAML de los usuarios a tu empresa](/enterprise-cloud@latest/admin/user-management/managing-users-in-your-enterprise/viewing-and-managing-a-users-saml-access-to-your-enterprise#viewing-and-revoking-a-linked-identity)". diff --git a/translations/es-ES/content/organizations/restricting-access-to-your-organizations-data/index.md b/translations/es-ES/content/organizations/restricting-access-to-your-organizations-data/index.md index 3100e1746c..88298673e4 100644 --- a/translations/es-ES/content/organizations/restricting-access-to-your-organizations-data/index.md +++ b/translations/es-ES/content/organizations/restricting-access-to-your-organizations-data/index.md @@ -1,6 +1,6 @@ --- title: Restringir el acceso a los datos de tu organización -intro: '{% data variables.product.prodname_oauth_app %} las restricciones de acceso le permiten a los propietarios de la organización que restrinjan el acceso de una app no confiable a los datos de la organización. Organization members can then use {% data variables.product.prodname_oauth_apps %} for their personal accounts while keeping organization data safe.' +intro: '{% data variables.product.prodname_oauth_app %} las restricciones de acceso le permiten a los propietarios de la organización que restrinjan el acceso de una app no confiable a los datos de la organización. Los miembros de las organizaciones pueden entonces utilizar las {% data variables.product.prodname_oauth_apps %} para sus cuentas personales mientras mantienen seguros los datos de la organización.' redirect_from: - /articles/restricting-access-to-your-organization-s-data - /articles/restricting-access-to-your-organizations-data diff --git a/translations/es-ES/content/packages/learn-github-packages/about-permissions-for-github-packages.md b/translations/es-ES/content/packages/learn-github-packages/about-permissions-for-github-packages.md index 1edd51d737..b590536b96 100644 --- a/translations/es-ES/content/packages/learn-github-packages/about-permissions-for-github-packages.md +++ b/translations/es-ES/content/packages/learn-github-packages/about-permissions-for-github-packages.md @@ -43,7 +43,7 @@ Para obtener más información, consulta la sección "[Configurar el control de ## Administrar paquetes -To use or manage a package hosted by a package registry, you must use a token with the appropriate scope, and your personal account must have appropriate permissions. +Para utilizar o administrar un paquete que hospede un registro de paquetes, debes utilizar un token con el alcance adecuado y tu cuenta personal debe tener permisos adecuados. Por ejemplo: - Para descargar e instalar los paquetes desde un repositorio, tu token debe tener el alcance de `read:packages` y tu cuenta de usuario debe tener permisos de lectura. diff --git a/translations/es-ES/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md b/translations/es-ES/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md index ab99eb43f5..b4953d64c3 100644 --- a/translations/es-ES/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md +++ b/translations/es-ES/content/packages/learn-github-packages/configuring-a-packages-access-control-and-visibility.md @@ -23,12 +23,12 @@ Para obtener más información sobre los permisos de los paquetes con alcance de ## Configurar el acceso a las imágenes de contenedor para tu cuenta personal -If you have admin permissions to a container image that's owned by a personal account, you can assign read, write, or admin roles to other users. Para obtener más información acerca de estos roles de permisos, consulta la sección "[Permisos de visibilidad y acceso para las imágenes de contenedor](#visibility-and-access-permissions-for-container-images)". +Si tienes permisos administrativos para una imagen de contenedor que le pertenece a una cuenta personal, puedes asignar roles de lectura, escritura o administración a otros usuarios. Para obtener más información acerca de estos roles de permisos, consulta la sección "[Permisos de visibilidad y acceso para las imágenes de contenedor](#visibility-and-access-permissions-for-container-images)". Si tu paquete es privado o interno y le pertenece a una organización, entonces solo puedes darles acceso a otros miembros o equipos de la misma. {% data reusables.package_registry.package-settings-from-user-level %} -1. En la página de configuración del paquete, da clic en **Invitar equipos o personas** e ingresa el nombre real, nombre de usuario, o dirección de correo electrónico de la persona a la que quieras dar acceso. Teams cannot be given access to a container image owned by a personal account. ![Botón de invitación para el acceso al contenedor](/assets/images/help/package-registry/container-access-invite.png) +1. En la página de configuración del paquete, da clic en **Invitar equipos o personas** e ingresa el nombre real, nombre de usuario, o dirección de correo electrónico de la persona a la que quieras dar acceso. No se puede dar acceso a los equipos para una imagen de contenedor que le pertenezca a una cuenta personal. ![Botón de invitación para el acceso al contenedor](/assets/images/help/package-registry/container-access-invite.png) 1. Junto al equipo o nombre de usuario, utiliza el menú desplegable de "Rol" para seleccionar un nivel de permisos que desees. ![Opciones de acceso al contenedor](/assets/images/help/package-registry/container-access-control-options.png) Se otorgará acceso automáticamente a los usuarios seleccionados y no necesitarán aceptar una invitación previamente. diff --git a/translations/es-ES/content/packages/managing-github-packages-using-github-actions-workflows/publishing-and-installing-a-package-with-github-actions.md b/translations/es-ES/content/packages/managing-github-packages-using-github-actions-workflows/publishing-and-installing-a-package-with-github-actions.md index c646a95e11..0afbd1e489 100644 --- a/translations/es-ES/content/packages/managing-github-packages-using-github-actions-workflows/publishing-and-installing-a-package-with-github-actions.md +++ b/translations/es-ES/content/packages/managing-github-packages-using-github-actions-workflows/publishing-and-installing-a-package-with-github-actions.md @@ -51,7 +51,7 @@ El {% data variables.product.prodname_registry %} te permite subir y extraer paq {% ifversion fpt or ghec %} ## Acerca de los permisos y el acceso de paquetes para el {% data variables.product.prodname_container_registry %} -El {% data variables.product.prodname_container_registry %} (`ghcr.io`) permite a los usuarios crear y administrar contenedores como recursos independientes a nivel organizacional. Containers can be owned by an organization or personal account and you can customize access to each of your containers separately from repository permissions. +El {% data variables.product.prodname_container_registry %} (`ghcr.io`) permite a los usuarios crear y administrar contenedores como recursos independientes a nivel organizacional. Los contenedores pueden pertenecerle a una cuenta personal o de organización y puedes personalizar el acceso a cada uno de ellos por separado desde los permisos de repositorio. Todos los flujos de trabajo que accedan al {% data variables.product.prodname_container_registry %} deben utilizar el `GITHUB_TOKEN` en vez de un token de acceso personal. Para obtener más información acerca de las mejores prácticas de seguridad, consulta la sección "[Fortalecimiento de seguridad para las GitHub Actions](/actions/learn-github-actions/security-hardening-for-github-actions#using-secrets)". diff --git a/translations/es-ES/content/packages/working-with-a-github-packages-registry/migrating-to-the-container-registry-from-the-docker-registry.md b/translations/es-ES/content/packages/working-with-a-github-packages-registry/migrating-to-the-container-registry-from-the-docker-registry.md index 3f3154febe..a5b06828ca 100644 --- a/translations/es-ES/content/packages/working-with-a-github-packages-registry/migrating-to-the-container-registry-from-the-docker-registry.md +++ b/translations/es-ES/content/packages/working-with-a-github-packages-registry/migrating-to-the-container-registry-from-the-docker-registry.md @@ -30,7 +30,7 @@ Después de que migraste las imágenes al {% data variables.product.prodname_con El {% data variables.product.prodname_container_registry %} se optimiza para ser compatible con algunas de las necesidades únicas de los contenedores. Con el {% data variables.product.prodname_container_registry %} puedes: -- Store container images within your organization and personal account, or connect them to a repository. +- Almacena las imágenes de contenedor dentro de cuenta personal y de organización o conéctalas a un repositorio. - Elige si quieres heredar permisos desde un repositorio o si quieres configurar permisos granulares independientemente de un repositorio. - Acceder a imágenes de contenedores públicos anónimamente. diff --git a/translations/es-ES/content/pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site.md b/translations/es-ES/content/pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site.md index 415e8976ed..b48fa8bdf3 100644 --- a/translations/es-ES/content/pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site.md +++ b/translations/es-ES/content/pages/getting-started-with-github-pages/changing-the-visibility-of-your-github-pages-site.md @@ -19,16 +19,16 @@ Si tu empresa utiliza {% data variables.product.prodname_emus %}, todos los siti Si tu organización utiliza {% data variables.product.prodname_ghe_cloud %} sin {% data variables.product.prodname_emus %}, puedes elegir publicar tus sitios en privado o al público para cualquiera en la internet. El control de accesos se encuentra disponible para los sitios de proyecto que se publican desde un repositorio privado o interno que pertenezca a la organización. No puedes administrar el control de accesos para el sitio de una organización. Para obtener más información sobre los tipos de sitios de {% data variables.product.prodname_pages %}, consulta la sección "[Acerca de {% data variables.product.prodname_pages %}](/pages/getting-started-with-github-pages/about-github-pages#types-of-github-pages-sites)". -## About subdomains for privately published sites +## Acerca de los subdominios para los sitios publicados en privado Los sitios que se publican de forma privada se encuentran disponibles en un subdominio diferente que el de aquellos sitios que se publican de forma pública. Esto garantiza que tu sitio de {% data variables.product.prodname_pages %} es seguro desde el momento en el que se publica: - Aseguramos cada dominio de `*.pages.github.io` automáticamente con un certificado TLS y requerimos HSTS para garantizar que los buscadores siempre sirvan la página a través de HTTPS. -- We use a unique subdomain for the privately published site to ensure that other repositories in your organization cannot publish content on the same origin as the site. This protects your site from "[cookie tossing](https://github.blog/2013-04-09-yummy-cookies-across-domains/)". También es por esto que no hospedamos sitios de {% data variables.product.prodname_pages %} en el dominio `github.com`. +- Utilizamos un subdominio único para el sitio publicado en privado para garantizar que otros repositorios en tu organización no puedan publicar contenido en el mismo origen que el sitio. Esto protege a tu sitio de los ataques de " [cookie tossing](https://github.blog/2013-04-09-yummy-cookies-across-domains/)". También es por esto que no hospedamos sitios de {% data variables.product.prodname_pages %} en el dominio `github.com`. -You can see your site's unique subdomain in the "Pages" tab of your repository settings. Si estás utilizando un generador estático que se configuró para compilar el sitio con el nombre de repositorio como ruta, podrías necesitar actualizar la configuración para el generador de sitio estático cuando cambies el sitio a privado. Para obtener más información, consulta la sección "[Configurar a Jekyll en tu sitio de {% data variables.product.prodname_pages %}](/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site#configuring-a-subdomain)" o la documentación de tu generador de sitio estático. +Puedes ver el subdominio único de tu sitio en la pestaña de "Páginas" de los ajustes de tu repositorio. Si estás utilizando un generador estático que se configuró para compilar el sitio con el nombre de repositorio como ruta, podrías necesitar actualizar la configuración para el generador de sitio estático cuando cambies el sitio a privado. Para obtener más información, consulta la sección "[Configurar a Jekyll en tu sitio de {% data variables.product.prodname_pages %}](/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site#configuring-a-subdomain)" o la documentación de tu generador de sitio estático. -To use a shorter and more memorable domain for your privately published site, you can configure a custom domain. Para obtener más información, consulta la sección "[Configurar un dominio personalizado para tu sitio de {% data variables.product.prodname_pages %}](/pages/configuring-a-custom-domain-for-your-github-pages-site)". +Para utilizar un dominio más corto y memorable para tu sitio publicado en privado, puedes configurar un dominio personalizado. Para obtener más información, consulta la sección "[Configurar un dominio personalizado para tu sitio de {% data variables.product.prodname_pages %}](/pages/configuring-a-custom-domain-for-your-github-pages-site)". ## Cambiar la visibilidad de tu sitio de {% data variables.product.prodname_pages %} diff --git a/translations/es-ES/content/repositories/creating-and-managing-repositories/transferring-a-repository.md b/translations/es-ES/content/repositories/creating-and-managing-repositories/transferring-a-repository.md index daa3dfc404..25e9e511fc 100644 --- a/translations/es-ES/content/repositories/creating-and-managing-repositories/transferring-a-repository.md +++ b/translations/es-ES/content/repositories/creating-and-managing-repositories/transferring-a-repository.md @@ -52,7 +52,7 @@ Cuando transfieres un repositorio, también se transfieren sus propuestas, solic $ git remote set-url origin new_url ``` -- When you transfer a repository from an organization to a personal account, the repository's read-only collaborators will not be transferred. This is because collaborators can't have read-only access to repositories owned by a personal account. For more information about repository permission levels, see "[Permission levels for a personal account repository](/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository)" and "[Repository roles for an organization](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)."{% ifversion fpt or ghec %} +- When you transfer a repository from an organization to a personal account, the repository's read-only collaborators will not be transferred. This is because collaborators can't have read-only access to repositories owned by a personal account. Para obtener más información sobre los niveles de permiso de los repositorios, consulta las secciones "[Niveles de permiso para un repositorio de cuenta personal](/github/setting-up-and-managing-your-github-user-account/permission-levels-for-a-user-account-repository)" y "[Roles de repositorio para una organización](/organizations/managing-access-to-your-organizations-repositories/repository-roles-for-an-organization)".{% ifversion fpt or ghec %} - Los patrocinadores que tengan acceso al repositorio a través de un nivel de patrocinio podrían verse afectados. Para obtener más información, consulta la sección "[Agregar un repositorio a un nivel de patrocinio](/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers#adding-a-repository-to-a-sponsorship-tier)".{% endif %} Para obtener más información, consulta "[Administrar repositorios remotos](/github/getting-started-with-github/managing-remote-repositories)." diff --git a/translations/es-ES/content/repositories/creating-and-managing-repositories/troubleshooting-cloning-errors.md b/translations/es-ES/content/repositories/creating-and-managing-repositories/troubleshooting-cloning-errors.md index a3a67a29ad..f128991fa6 100644 --- a/translations/es-ES/content/repositories/creating-and-managing-repositories/troubleshooting-cloning-errors.md +++ b/translations/es-ES/content/repositories/creating-and-managing-repositories/troubleshooting-cloning-errors.md @@ -117,7 +117,7 @@ Verifica si tienes acceso al repositorio de alguna de las siguientes maneras: En muy raros casos, es posible que no tengas el acceso SSH correcto al repositorio. -You should ensure that the SSH key you are using is attached to your personal account on {% data variables.product.product_name %}. Para comprobarlo, escribe lo siguiente en la línea de comando: +Debes asegurarte de que la llave SSH que estás utilizando esté adjunta a tu cuenta personal en {% data variables.product.product_name %}. Para comprobarlo, escribe lo siguiente en la línea de comando: ```shell $ ssh -T git@{% data variables.command_line.codeblock %} diff --git a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository.md b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository.md index 2c2c3c82f6..4d2e54f6a0 100644 --- a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository.md +++ b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository.md @@ -58,7 +58,7 @@ custom: ["https://www.paypal.me/octocat", octocat.com] {% endnote %} -You can create a default sponsor button for your organization or personal account. Para obtener más información, consulta "[Crear un archivo de salud predeterminado para la comunidad](/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file)." +Puedes crear un botón de patrocinio predeterminado para tu cuenta personal o de organización. Para obtener más información, consulta "[Crear un archivo de salud predeterminado para la comunidad](/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file)." {% note %} diff --git a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md index 11a1dcbaa1..fb5aac6628 100644 --- a/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md +++ b/translations/es-ES/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md @@ -29,11 +29,11 @@ miniTocMaxHeadingLevel: 3 Puedes habilitar {% data variables.product.prodname_actions %} para tu repositorio. {% data reusables.actions.enabled-actions-description %} Puedes inhabilitar {% data variables.product.prodname_actions %} totalmente para tu repositorio. {% data reusables.actions.disabled-actions-description %} -Alternatively, you can enable {% data variables.product.prodname_actions %} in your repository but limit the actions {% if actions-workflow-policy %}and reusable workflows{% endif %} a workflow can run. +Como alternativa, puedes habilitar las {% data variables.product.prodname_actions %} en tu repositorio pero limitar las acciones {% if actions-workflow-policy %}y flujos de trabajo reutilizables{% endif %} que puede ejecutar un flujo de trabajo. ## Administrar los permisos de {% data variables.product.prodname_actions %} para tu repositorio -You can disable {% data variables.product.prodname_actions %} for a repository, or set a policy that configures which actions{% if actions-workflow-policy %} and reusable workflows{% endif %} can be used in the repository. +Puedes inhabilitar las {% data variables.product.prodname_actions %} para un repositorio o ajustar una política que configure qué acciones{% if actions-workflow-policy %} y flujos de trabajo reutilizables{% endif %} pueden utilizarse ene l repositorio. {% note %} @@ -49,9 +49,9 @@ You can disable {% data variables.product.prodname_actions %} for a repository, {% indented_data_reference reusables.actions.actions-use-policy-settings spaces=3 %} {% if actions-workflow-policy %} - ![Set actions policy for this repository](/assets/images/help/repository/actions-policy-with-workflows.png) + ![Configurar una política de acciones para este repositorio](/assets/images/help/repository/actions-policy-with-workflows.png) {%- else %} - ![Set actions policy for this repository](/assets/images/help/repository/actions-policy.png) + ![Configurar una política de acciones para este repositorio](/assets/images/help/repository/actions-policy.png) {%- endif %} 1. Haz clic en **Save ** (guardar). @@ -60,14 +60,14 @@ You can disable {% data variables.product.prodname_actions %} for a repository, {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.settings-sidebar-actions-general %} -1. Under "Actions permissions", select {% data reusables.actions.policy-label-for-select-actions-workflows %} and add your required actions to the list. +1. Debajo de "Permissos de acciones", selecciona {% data reusables.actions.policy-label-for-select-actions-workflows %} y agrega tus acciones requeridas a la lista. {% if actions-workflow-policy%} ![Add actions and reusable workflows to the allow list](/assets/images/help/repository/actions-policy-allow-list-with-workflows.png) {%- elsif ghes %} - ![Add actions to the allow list](/assets/images/help/repository/actions-policy-allow-list.png) + ![Agregar acciones a la lista de elementos permitidos](/assets/images/help/repository/actions-policy-allow-list.png) {%- else %} - ![Add actions to the allow list](/assets/images/enterprise/github-ae/repository/actions-policy-allow-list.png) + ![Agregar acciones a la lista de elementos permitidos](/assets/images/enterprise/github-ae/repository/actions-policy-allow-list.png) {%- endif %} 1. Haz clic en **Save ** (guardar). diff --git a/translations/es-ES/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md b/translations/es-ES/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md index e2d0c162b0..0501b4ae37 100644 --- a/translations/es-ES/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md +++ b/translations/es-ES/content/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage.md @@ -41,11 +41,11 @@ Si hay archivos existentes en tu repositorio con los que te gustaría usar {% da {% note %} - **Note:** We strongly suggest that you commit your local *.gitattributes* file into your repository. + **Nota:** Te recomendamos ampliamente que confirmes tu archivo local de *.gitatributes* en tu repositorio. - Basándose en un archivo global *.gitattributes* asociado con {% data variables.large_files.product_name_short %} puede causar conflictos al contribuir con otros proyectos Git. - - Including the *.gitattributes* file in the repository allows people creating forks or fresh clones to more easily collaborate using {% data variables.large_files.product_name_short %}. - - Including the *.gitattributes* file in the repository allows {% data variables.large_files.product_name_short %} objects to optionally be included in ZIP file and tarball archives. + - El incluir el archivo *.gitattributes* en el repositorio le permite a las personas crear bifurcaciones o clones nuevos para colaborar más fácilmente utilizando {% data variables.large_files.product_name_short %}. + - El incluir el archivo *.gitattributes* en el repositorio permite que los objetos de {% data variables.large_files.product_name_short %} se incluyan opcionalmente en los archivos .tar y ZIP. {% endnote %} diff --git a/translations/es-ES/content/rest/actions/permissions.md b/translations/es-ES/content/rest/actions/permissions.md index a228690872..cf3660d222 100644 --- a/translations/es-ES/content/rest/actions/permissions.md +++ b/translations/es-ES/content/rest/actions/permissions.md @@ -12,4 +12,4 @@ versions: ## Permisos -The Permissions API allows you to set permissions for what enterprises, organizations, and repositories are allowed to run {% data variables.product.prodname_actions %}, and what actions{% if actions-workflow-policy %} and reusable workflows{% endif %} are allowed to run.{% ifversion fpt or ghec or ghes %} For more information, see "[Usage limits, billing, and administration](/actions/reference/usage-limits-billing-and-administration#disabling-or-limiting-github-actions-for-your-repository-or-organization)."{% endif %} +La API de permisos te permite configurar los permisos que pueden ejecutar las empresas, organizaciones y repositorios {% data variables.product.prodname_actions %}, así como las acciones{% if actions-workflow-policy %} y flujos de trabajo reutilizables{% endif %} también pueden hacerlo.{% ifversion fpt or ghec or ghes %} Para obtener más información, consulta la sección "[Límites de uso, facturación y administración](/actions/reference/usage-limits-billing-and-administration#disabling-or-limiting-github-actions-for-your-repository-or-organization)".{% endif %} diff --git a/translations/es-ES/content/search-github/getting-started-with-searching-on-github/about-searching-on-github.md b/translations/es-ES/content/search-github/getting-started-with-searching-on-github/about-searching-on-github.md index 566eba12a4..3b8416874c 100644 --- a/translations/es-ES/content/search-github/getting-started-with-searching-on-github/about-searching-on-github.md +++ b/translations/es-ES/content/search-github/getting-started-with-searching-on-github/about-searching-on-github.md @@ -66,13 +66,13 @@ Puedes buscar en {% data variables.product.product_name %} utilizando la {% data {% ifversion fpt or ghec %} -If you use both {% data variables.product.prodname_dotcom_the_website %} and {% data variables.product.prodname_ghe_server %} or {% data variables.product.prodname_ghe_managed %}, and an enterprise owner has enabled {% data variables.product.prodname_unified_search %}, you can search across both environments at the same time from {% data variables.product.prodname_ghe_server %} or {% data variables.product.prodname_ghe_managed %}. For more information, see [the {% data variables.product.prodname_ghe_server %} documentation](/enterprise-server@latest/search-github/getting-started-with-searching-on-github/about-searching-on-github#searching-repositories-on-githubcom-from-your-private-enterprise-environment) or [the {% data variables.product.prodname_ghe_managed %} documentation](/github-ae@latest/search-github/getting-started-with-searching-on-github/about-searching-on-github#searching-repositories-on-githubcom-from-your-private-enterprise-environment). +Si utilizas tanto {% data variables.product.prodname_dotcom_the_website %} como {% data variables.product.prodname_ghe_server %} o {% data variables.product.prodname_ghe_managed %} y un propietario de empresa habilitó la {% data variables.product.prodname_unified_search %}, puedes buscar en ambos ambientes al mismo tiempo desde {% data variables.product.prodname_ghe_server %} o desde {% data variables.product.prodname_ghe_managed %}. Para obtener más información, consulta [la documentación de {% data variables.product.prodname_ghe_server %}](/enterprise-server@latest/search-github/getting-started-with-searching-on-github/about-searching-on-github#searching-repositories-on-githubcom-from-your-private-enterprise-environment) o [la documentación de {% data variables.product.prodname_ghe_managed %}](/github-ae@latest/search-github/getting-started-with-searching-on-github/about-searching-on-github#searching-repositories-on-githubcom-from-your-private-enterprise-environment). {% else %} If you use both {% data variables.product.prodname_dotcom_the_website %} and {% data variables.product.product_name %}, and an enterprise owner has enabled {% data variables.product.prodname_unified_search %}, you can search across both environments at the same time from {% data variables.product.product_name %}. For more information about how enterprise owners can enable {% data variables.product.prodname_unified_search %}, see "[Enabling {% data variables.product.prodname_unified_search %} for your enterprise](/admin/configuration/configuring-github-connect/enabling-unified-search-for-your-enterprise)." -Your enterprise owner on {% data variables.product.product_name %} can separately enable {% data variables.product.prodname_unified_search %} for all public repositories on {% data variables.product.prodname_dotcom_the_website %} and for private repositories owned by the organization or enterprise on {% data variables.product.prodname_dotcom_the_website %} that is connected to {% data variables.product.product_name %} through {% data variables.product.prodname_github_connect %}. +Tu propietario de empresa en {% data variables.product.product_name %} puede separar y habilitar la {% data variables.product.prodname_unified_search %} para todos los repositorios públicos {% data variables.product.prodname_dotcom_the_website %} y para los repositorios privados que pertenecen a la organización o empresa de {% data variables.product.prodname_dotcom_the_website %} que está conectada a {% data variables.product.product_name %} mediante {% data variables.product.prodname_github_connect %}. Before you can use {% data variables.product.prodname_unified_search %} for private repositories, you must connect your personal accounts on {% data variables.product.prodname_dotcom_the_website %} and {% data variables.product.product_name %}. Para obtener más información, consulta la sección "[Habilitar la búsqueda de repositorios en {% data variables.product.prodname_dotcom_the_website %} desde tu ambiente empresarial privado](/search-github/getting-started-with-searching-on-github/enabling-githubcom-repository-search-from-your-private-enterprise-environment)". diff --git a/translations/es-ES/content/site-policy/acceptable-use-policies/github-acceptable-use-policies.md b/translations/es-ES/content/site-policy/acceptable-use-policies/github-acceptable-use-policies.md index 57ed5ecc45..e93cbbfdd8 100644 --- a/translations/es-ES/content/site-policy/acceptable-use-policies/github-acceptable-use-policies.md +++ b/translations/es-ES/content/site-policy/acceptable-use-policies/github-acceptable-use-policies.md @@ -109,6 +109,6 @@ We will interpret our policies and resolve disputes in favor of protecting users --- -**Enforcement.** GitHub retains full discretion to [take action](/github/site-policy/github-community-guidelines#what-happens-if-someone-violates-githubs-policies) in response to a violation of these policies, including account suspension, account [termination](/github/site-policy/github-terms-of-service#3-github-may-terminate), or [removal](/github/site-policy/github-terms-of-service#2-github-may-remove-content) of content. Please also see our [Community Guidelines](/site-policy/github-terms/github-community-guidelines) for actions you can take if something or someone offends you. +**Aplicación.** GitHub retiene toda la discreción para [proceder](/github/site-policy/github-community-guidelines#what-happens-if-someone-violates-githubs-policies) en respuesta a cualquier violación de estas políticas, incluyendo la suspensión de cuentas, la [terminación](/github/site-policy/github-terms-of-service#3-github-may-terminate) de esta o la [eliminación](/github/site-policy/github-terms-of-service#2-github-may-remove-content) de contenido. Please also see our [Community Guidelines](/site-policy/github-terms/github-community-guidelines) for actions you can take if something or someone offends you. -**Reinstatement and appeal.** If your content or account has been disabled or restricted and you seek reinstatement or wish to appeal, please see our [Appeal and Reinstatement page](/site-policy/acceptable-use-policies/github-appeal-and-reinstatement) for information about the process and use our [Appeal and Reinstatement form](https://support.github.com/contact/reinstatement) to submit a request. +**Reinstauración y apelación.** Si tu contenido o cuenta se inhabilitó o restringió y buscas una reinstauración o quieres apelar, consulta nuestra [Página de apelación y reinstauración](/site-policy/acceptable-use-policies/github-appeal-and-reinstatement) para obtener más información sobre el proceso y utiliza nuestro [formato de apelación y reinstauración](https://support.github.com/contact/reinstatement) para emitir una solicitud. diff --git a/translations/es-ES/content/site-policy/github-terms/github-community-guidelines.md b/translations/es-ES/content/site-policy/github-terms/github-community-guidelines.md index b91357272a..2603bf898d 100644 --- a/translations/es-ES/content/site-policy/github-terms/github-community-guidelines.md +++ b/translations/es-ES/content/site-policy/github-terms/github-community-guidelines.md @@ -71,7 +71,7 @@ Where we have decided that moderation action is warranted, these are some of the ## Apelación y reinstauración -If your content or account has been disabled or restricted and you seek reinstatement or wish to appeal, please see our [Appeal and Reinstatement page](/site-policy/acceptable-use-policies/github-appeal-and-reinstatement) for information about the process and use our [Appeal and Reinstatement form](https://support.github.com/contact/reinstatement) to submit a request. +Si tu contenido o tu cuenta se inhabilitó o restringió y buscas una reinstauración o quieres apelar, consulta nuestra [Página de reinstauración y apelación](/site-policy/acceptable-use-policies/github-appeal-and-reinstatement) para obtener más información sobre el proceso y utiliza nuestro [Formato de reinstauración y apelación](https://support.github.com/contact/reinstatement) para emitir una solicitud. ## Avisos legales diff --git a/translations/es-ES/content/sponsors/getting-started-with-github-sponsors/about-github-sponsors.md b/translations/es-ES/content/sponsors/getting-started-with-github-sponsors/about-github-sponsors.md index d511413241..a404521a79 100644 --- a/translations/es-ES/content/sponsors/getting-started-with-github-sponsors/about-github-sponsors.md +++ b/translations/es-ES/content/sponsors/getting-started-with-github-sponsors/about-github-sponsors.md @@ -19,7 +19,7 @@ topics: {% data reusables.sponsors.no-fees %} Para obtener más información, consulta "[Acerca de la facturación para {% data variables.product.prodname_sponsors %}](/articles/about-billing-for-github-sponsors)". -{% data reusables.sponsors.you-can-be-a-sponsored-developer %} For more information, see "[About {% data variables.product.prodname_sponsors %} for open source contributors](/sponsors/receiving-sponsorships-through-github-sponsors/about-github-sponsors-for-open-source-contributors)" and "[Setting up {% data variables.product.prodname_sponsors %} for your personal account](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account)." +{% data reusables.sponsors.you-can-be-a-sponsored-developer %} Para obtener más información, consulta las secciones "[Acerca de {% data variables.product.prodname_sponsors %} para los contribuyentes de código libre](/sponsors/receiving-sponsorships-through-github-sponsors/about-github-sponsors-for-open-source-contributors)" y "[Configurar {% data variables.product.prodname_sponsors %} para tu cuenta personal](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account)". {% data reusables.sponsors.you-can-be-a-sponsored-organization %}Para obtener más información, consulta la sección "[Configurar {% data variables.product.prodname_sponsors %} para tu organización](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization)". diff --git a/translations/es-ES/content/sponsors/getting-started-with-github-sponsors/quickstart-for-finding-contributors-to-sponsor.md b/translations/es-ES/content/sponsors/getting-started-with-github-sponsors/quickstart-for-finding-contributors-to-sponsor.md index 75784facf0..da781f4c3f 100644 --- a/translations/es-ES/content/sponsors/getting-started-with-github-sponsors/quickstart-for-finding-contributors-to-sponsor.md +++ b/translations/es-ES/content/sponsors/getting-started-with-github-sponsors/quickstart-for-finding-contributors-to-sponsor.md @@ -46,7 +46,7 @@ Puedes verificar si los contribuyentes de los que te has beneficiado tienen perf ## Busca un proyecto o contribuyente específico -En https://github.com/sponsors/community, puedes buscar por ecosistema, los más utilizados, actualizados recientemente, y más. You can filter search results for your personal account or for organizations that you're a member of. +En https://github.com/sponsors/community, puedes buscar por ecosistema, los más utilizados, actualizados recientemente, y más. Puedes filtrar los resultados de búsqueda para tu cuenta personal o para las organizaciones de las cuales eres miembro. ## Pasos siguientes diff --git a/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/about-github-sponsors-for-open-source-contributors.md b/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/about-github-sponsors-for-open-source-contributors.md index 9917353ff3..29a7742ca7 100644 --- a/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/about-github-sponsors-for-open-source-contributors.md +++ b/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/about-github-sponsors-for-open-source-contributors.md @@ -16,7 +16,7 @@ shortTitle: Contribuyentes de código abierto ## Unirte a {% data variables.product.prodname_sponsors %} -{% data reusables.sponsors.you-can-be-a-sponsored-developer %} For more information, see "[Setting up {% data variables.product.prodname_sponsors %} for your personal account](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account)." +{% data reusables.sponsors.you-can-be-a-sponsored-developer %}Para obtener más información, consulta [Configurar {% data variables.product.prodname_sponsors %} para tu cuenta de personal](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account)". {% data reusables.sponsors.you-can-be-a-sponsored-organization %}Para obtener más información, consulta la sección "[Configurar {% data variables.product.prodname_sponsors %} para tu organización](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization)". @@ -28,7 +28,7 @@ Puedes configurar una meta para tus patrocinios. Para obtener más información, ## Niveles de patrocinio -{% data reusables.sponsors.tier-details %} For more information, see "[Setting up {% data variables.product.prodname_sponsors %} for your personal account](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account)," "[Setting up {% data variables.product.prodname_sponsors %} for your organization](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization), and "[Managing your sponsorship tiers](/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers)." +{% data reusables.sponsors.tier-details %} Para obtener más información, consulta las secciones "[Configurar {% data variables.product.prodname_sponsors %} para tu cuenta personal"](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account)", "[Configurar {% data variables.product.prodname_sponsors %} para tu organización](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization) y "[Administrar tus niveles de patrocinio](/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers)". Es mejor mantener una gama de opciones de patrocinio diferentes, incluyendo niveles mensuales y de una sola ocasión, para hacer más fácil que cualquiera apiye tu trabajo. Particularmente, los pagos de una sola ocasión le permiten a la spersonas recompensarte por tu esfuerzo sin preocuparse de que sus finanzas apoyen un programa de pagos constantes. diff --git a/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/contacting-your-sponsors.md b/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/contacting-your-sponsors.md index 0e7808cce3..d5311c83b7 100644 --- a/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/contacting-your-sponsors.md +++ b/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/contacting-your-sponsors.md @@ -17,7 +17,7 @@ topics: Tus patrocinadores pueden elegir si desean recibir actualizaciones por correo electrónico sobre tu trabajo. Para obtener más información, consulta "[Administar tu patrocinio](/sponsors/sponsoring-open-source-contributors/managing-your-sponsorship)". -For sponsored developer accounts, the update will come from your personal account's primary email address. If you've enabled email address privacy on your personal account, the update will come from `noreply@github.com` instead. Para las organizaciones patrocinadas, la actualización vendrá de la dirección de correo electrónico de tipo `noreply@github.com` de la organización. Para obtener más información, consulta "[Establecer tu dirección de correo electrónico de confirmación](/articles/setting-your-commit-email-address)". +Para las cuentas de desarrollador patrocinado, la actualización vendrá de tu dirección de correo electrónico principal para tu cuenta personal. Si habilitaste la privacidad de las direcciones de correo electrónico en tu cuenta personal, la actualización vendrá de `noreply@github.com` en su lugar. Para las organizaciones patrocinadas, la actualización vendrá de la dirección de correo electrónico de tipo `noreply@github.com` de la organización. Para obtener más información, consulta "[Establecer tu dirección de correo electrónico de confirmación](/articles/setting-your-commit-email-address)". ## Comunicarse con tus patrocinadores diff --git a/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization.md b/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization.md index e55f45253b..b737bb3256 100644 --- a/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization.md +++ b/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization.md @@ -23,7 +23,7 @@ shortTitle: Configuración para una organización Después de recibir una invitación para que tu organización se una a {% data variables.product.prodname_sponsors %} puedes completar los pasos a continuación para que se convierta en una organización patrocinada. -To join {% data variables.product.prodname_sponsors %} as an individual contributor outside an organization, see "[Setting up {% data variables.product.prodname_sponsors %} for your personal account](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account)." +Para unirte a {% data variables.product.prodname_sponsors %} como un colaborador individual independiente a una organización, consulta la sección "[Configurar {% data variables.product.prodname_sponsors %} para tu cuenta personal](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account)". {% data reusables.sponsors.navigate-to-github-sponsors %} {% data reusables.sponsors.view-eligible-accounts %} diff --git a/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account.md b/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account.md index d9cff3e32b..a5fd33b805 100644 --- a/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account.md +++ b/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account.md @@ -22,7 +22,7 @@ shortTitle: Registrarte para tu cuenta personal Para unirte a {% data variables.product.prodname_sponsors %} comoorganización, consulta la sección "[Configurar {% data variables.product.prodname_sponsors %} para tu organización](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization)". {% data reusables.sponsors.navigate-to-github-sponsors %} -2. Si eres un propietario de organización, tienes más de una cuenta elegible. Click **View your eligible accounts**, then in the list of accounts, find your personal account. +2. Si eres un propietario de organización, tienes más de una cuenta elegible. Haz clic en **Ver tus cuentas elegibles** y luego en la lista de cuentas para encontrar tu cuenta personal. 3. Da clic en **Unirse a la lista de espera**. {% data reusables.sponsors.contact-info %} {% data reusables.sponsors.accept-legal-terms %} diff --git a/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/tax-information-for-github-sponsors.md b/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/tax-information-for-github-sponsors.md index 94012f7375..4cd423d20c 100644 --- a/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/tax-information-for-github-sponsors.md +++ b/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/tax-information-for-github-sponsors.md @@ -28,7 +28,7 @@ Si eres un contribuyente en los Estados Unidos, debes emitir un formato ["W-9](h Los formatos de impuestos W-8 BEN y W-8 BEN-E ayudan a que {% data variables.product.prodname_dotcom %} determine al propietario beneficiario de una cantidad sujeta a retenciones. -Si eres un contribuyente en cualquier otra región diferente a los Estados Unidos, debes emitir un formato [W-8 BEN](https://www.irs.gov/pub/irs-pdf/fw8ben.pdf) (individual) o [W-8 BEN-E](https://www.irs.gov/forms-pubs/about-form-w-8-ben-e) (para empresas) antes de publicar tu perfil de {% data variables.product.prodname_sponsors %}. For more information, see "[Setting up {% data variables.product.prodname_sponsors %} for your personal account](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account#submitting-your-tax-information)" and "[Setting up {% data variables.product.prodname_sponsors %} for your organization](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization#submitting-your-tax-information)." {% data variables.product.prodname_dotcom %}te enviará los formatos adecuados, te notificará cuando vayan a expirar, y te dará una cantidad razonable de tiempo para completarlos y enviarlos. +Si eres un contribuyente en cualquier otra región diferente a los Estados Unidos, debes emitir un formato [W-8 BEN](https://www.irs.gov/pub/irs-pdf/fw8ben.pdf) (individual) o [W-8 BEN-E](https://www.irs.gov/forms-pubs/about-form-w-8-ben-e) (para empresas) antes de publicar tu perfil de {% data variables.product.prodname_sponsors %}. Para obtener más información, consulta las secciones "[Configurar {% data variables.product.prodname_sponsors %} para tu cuenta personal](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account#submitting-your-tax-information)" y "[Confgurar {% data variables.product.prodname_sponsors %} para tu organización](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization#submitting-your-tax-information)". {% data variables.product.prodname_dotcom %}te enviará los formatos adecuados, te notificará cuando vayan a expirar, y te dará una cantidad razonable de tiempo para completarlos y enviarlos. Si se te asignó un formato de impuestos incorrecto, [contacta al Soporte de {% data variables.product.prodname_dotcom %}](https://support.github.com/contact?form%5Bsubject%5D=GitHub%20Sponsors:%20tax%20form&tags=sponsors) para que se te reasigne el formato correcto para tu situación. diff --git a/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md b/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md index eb46f67b49..d654b7224d 100644 --- a/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md +++ b/translations/es-ES/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md @@ -50,13 +50,13 @@ Por ejemplo, puedes utilizar `https://github.com/sponsors/{account}?metadata_cam ## Visualizar la actividad de patrocinio reciente {% data reusables.sponsors.navigate-to-sponsors-dashboard %} -{% data reusables.sponsors.activity-tab %} +{% data reusables.sponsors.your-sponsors-tab %} ## Exportar tus datos de patrocinio Puedes exportar tus transacciones de patrocinio mensualmente. {% data variables.product.company_short %} te enviará un correo electrónico con los datos de las transacciones de todos tus patrocinadores para el mes que selecciones. Después de que se complete la exportación, puedes exportar otor mes de datos. Puedes exportar hasta 10 conjuntos de datos por hora para cualquiera de tus cuentas patrocinadas. {% data reusables.sponsors.navigate-to-sponsors-dashboard %} -{% data reusables.sponsors.activity-tab %} -1. Da clic en {% octicon "download" aria-label="The download icon" %} **Exportar**. ![Botón de exportar](/assets/images/help/sponsors/export-all.png) +{% data reusables.sponsors.your-sponsors-tab %} +1. En la esquina superior derecha, haz clic en {% octicon "download" aria-label="The download icon" %} **Exportar**. ![Botón de exportar](/assets/images/help/sponsors/export-all.png) 1. Elige un periodo de tiempo y un formato para los datos que te gustaría exportar y luego haz clic en **Iniciar exportación**. ![Opciones para exportar datos](/assets/images/help/sponsors/export-your-sponsors.png) diff --git a/translations/es-ES/content/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor.md b/translations/es-ES/content/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor.md index 94163bfeb9..eec905910a 100644 --- a/translations/es-ES/content/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor.md +++ b/translations/es-ES/content/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor.md @@ -23,7 +23,7 @@ shortTitle: Patrocina a un contribuyente {% data reusables.sponsors.sponsorship-details %} -You can sponsor an account on behalf of your personal account to invest in projects that you personally benefit from. Puedes patrocinar una cuenta en nombre de tu organización por varias razones. +Puedes patrocinar una cuenta en nombre de tu cuenta personal para invertir en los proyectos de los cuales te beneficies personalmente. Puedes patrocinar una cuenta en nombre de tu organización por varias razones. - Mantener bibliotecas específicas de las cuales dependa el trabajo de tu organización - Invertir en el ecosistema del cual dependes como organización (tal como blockchain) - Desarrollar una conciencia de marca como una organización que valora el código abierto @@ -35,7 +35,7 @@ Puedes utilizar una tarjeta de crédito para patrocinar una cuenta en {% data va Cuando patrocinas una cuenta utilizando una tarjeta de crédito, el cargo tomará efecto de inmediato. {% data reusables.sponsors.prorated-sponsorship %} -We may share certain limited tax information with sponsored accounts. For more information, see "[Tax information](#tax-information)." +Podríamos compartir información fiscal limitada con las cuentas patrocinadas. Para obtener más información, consulta la sección "[Información fiscal](#tax-information)". {% data reusables.sponsors.manage-updates-for-orgs %} @@ -43,26 +43,26 @@ Puedes elegir si quieres mostrar tu patrocinio públicamente. Los patrocinios de Si la cuenta patrocinada retira tu nivel, éste permanecerá configurado hasta que elijas uno diferente o hasta que canceles tu suscripción. Para obtener más información, consulta "[Actualizar un patrocinio](/articles/upgrading-a-sponsorship)" y "[Bajar de categoría un patrocinio](/articles/downgrading-a-sponsorship)." -Si la cuenta que quieres patrocinar no tiene un perfil en {% data variables.product.prodname_sponsors %}, puedes alentarla a que se una. For more information, see "[Setting up {% data variables.product.prodname_sponsors %} for your personal account](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account)" and "[Setting up {% data variables.product.prodname_sponsors %} for your organization](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization)." +Si la cuenta que quieres patrocinar no tiene un perfil en {% data variables.product.prodname_sponsors %}, puedes alentarla a que se una. Para obtener más información, consulta las secciones "[Configurar {% data variables.product.prodname_sponsors %} para tu cuenta personal](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-user-account)" y "[Confgurar {% data variables.product.prodname_sponsors %} para tu organización](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization)". {% data reusables.sponsors.sponsorships-not-tax-deductible %} {% note %} -**Note:** {% data variables.product.prodname_dotcom %} is not responsible for how developers represent themselves nor does {% data variables.product.prodname_dotcom %} endorse any sponsored open source projects. Las alegaciones son responsabilidad total del desarrollador que recibe los fondos. Asegúrate de que confías en una persona antes de ofrecerle un patrocinio. Para obtener más información, consulta la sección de [Condiciones Adicionales de {% data variables.product.prodname_sponsors %}](/free-pro-team@latest/github/site-policy/github-sponsors-additional-terms). +**Nota:** {% data variables.product.prodname_dotcom %} no se hace responsable de la forma en la que los desarrolladores se representan a sí mismos y {% data variables.product.prodname_dotcom %} tampoco respalda ningún proyecto de código abierto patrocinado. Las alegaciones son responsabilidad total del desarrollador que recibe los fondos. Asegúrate de que confías en una persona antes de ofrecerle un patrocinio. Para obtener más información, consulta la sección de [Condiciones Adicionales de {% data variables.product.prodname_sponsors %}](/free-pro-team@latest/github/site-policy/github-sponsors-additional-terms). {% endnote %} ## Información fiscal -As a sponsor, you acknowledge that we may disclose to the owner of each account you sponsor the following limited information about your sponsorship payments to the account, since the inception of the Sponsors Program: +Como patrocinador, reconoces que podríamos divulgar al propietario de cada cuenta que patrocines la siguiente información limitada sobre tus pagos de patrocinio a la cuenta, desde la incepción del Programa de Patrocinadores: -- Transaction date -- Amount paid -- The country, state, and province from where payment was made -- Whether payment was made by a business or individual +- Fecha de la transacción +- Cantidad pagada +- El país, estado y provincia en donde se hizo el pago +- Si el pago lo realizó un negocio o un individuo -This information is necessary to enable payment and reporting of any taxes arising from such sponsorship payments. +Esta información se necesita para habilitar los pagos y para reportar cualquier impuesto que se origine de dichos pagos de patrocinios. ## Patrocinar una cuenta diff --git a/translations/es-ES/data/features/README.md b/translations/es-ES/data/features/README.md index 66ccb6d8eb..74268e9ba1 100644 --- a/translations/es-ES/data/features/README.md +++ b/translations/es-ES/data/features/README.md @@ -45,7 +45,7 @@ versions: ## Imposición del modelado -The schema for validating the feature versioning lives in [`tests/helpers/schemas/feature-versions-schema.js`](/tests/helpers/schemas/feature-versions-schema.js) and is exercised by [`tests/linting/lint-files.js`](/tests/linting/lint-files.js). +El modelo para validar la característica de versionamiento vive en [`tests/helpers/schemas/feature-versions-schema.js`](/tests/helpers/schemas/feature-versions-schema.js) y la ejecuta [`tests/linting/lint-files.js`](/tests/linting/lint-files.js). ## Script para eliminar las etiquetas de característica diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-1/19.yml b/translations/es-ES/data/release-notes/enterprise-server/3-1/19.yml index adbc63ee19..a91afb5d29 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/3-1/19.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/3-1/19.yml @@ -1,14 +1,14 @@ date: '2022-04-04' sections: security_fixes: - - 'MEDIUM: A path traversal vulnerability was identified in {% data variables.product.prodname_ghe_server %} Management Console that allowed the bypass of CSRF protections. This vulnerability affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.5 and was fixed in versions 3.1.19, 3.2.11, 3.3.6, 3.4.1. This vulnerability was reported via the {% data variables.product.prodname_dotcom %} Bug Bounty program and has been assigned CVE-2022-23732.' + - 'MEDIA: Se identificó una vulnerabilidad de recorrido de ruta en la consola de administración de {% data variables.product.prodname_ghe_server %}, la cual permitió un puenteo de las protecciones CSRF. Esta vulnerabilidad afectó a todas las versiones de {% data variables.product.prodname_ghe_server %} anteriores a la 3.5 y se corrigió en las versiones 3.1.19, 3.2.11, 3.3.6 y 3.4.1. Esta vulnerabilidad se reportó mediante el programa de recompensas por errores de {% data variables.product.prodname_dotcom %} y se le asignó el CVE-2022-23732.' - 'MEDIUM: An integer overflow vulnerability was identified in the 1.x branch and the 2.x branch of `yajil` which leads to subsequent heap memory corruption when dealing with large (~2GB) inputs. This vulnerability was reported internally and has been assigned CVE-2022-24795. ' - 'Support bundles could include sensitive files if {% data variables.product.prodname_actions %} was enabled.' - 'Los paquetes se actualizaron a las últimas versiones de seguridad.' bugs: - 'The options to enable `TLS 1.0` and `TLS 1.1` in the Privacy settings of the Management Console were shown, although removal of those protocol versions occurred in an earlier release.' - 'In a HA environment, configuring MSSQL replication could require additional manual steps after enabling {% data variables.product.prodname_actions %} for the first time.' - - 'A subset of internal configuration files are more reliably updated after a hotpatch.' + - 'Un subconjunto de archivos de configuración interna se actualiza de forma más confiable después de un hotpatch.' - 'The `ghe-run-migrations` script would sometimes fail to generate temporary certificate names correctly.' - 'In a cluster environment, Git LFS operations could fail with failed internal API calls that crossed multiple web nodes.' - 'Pre-receive hooks that used `gpg --import` timed out due to insufficient `syscall` privileges.' @@ -18,8 +18,8 @@ sections: - 'Organizations created as a result of a user transforming their user account into an organization were not added to the global enterprise account.' - 'When using `ghe-migrator` or exporting from {% data variables.product.prodname_dotcom_the_website %}, a long-running export would fail when data was deleted mid-export.' - 'Links to inaccessible pages were removed.' - - 'Adding a team as a reviewer to a pull request would sometimes show the incorrect number of members on that team.' - - 'A large number of dormant users could cause a {% data variables.product.prodname_github_connect %} configuration to fail.' + - 'El agregar a un equipo como revisor para una solicitud de cambios algunas veces muestra la cantidad incorrecta de miembros en un equipo.' + - 'Una gran cantidad de usuarios inactivos podría ocasionar que falle una configuración de {% data variables.product.prodname_github_connect %}.' - 'The "Feature & beta enrollments" page in the Site admin web UI was incorrectly available.' - 'The "Site admin mode" link in the site footer did not change state when clicked.' changes: diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-1/20.yml b/translations/es-ES/data/release-notes/enterprise-server/3-1/20.yml index f2dffa087a..7c82e4bfab 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/3-1/20.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/3-1/20.yml @@ -8,7 +8,7 @@ sections: - 'Elasticsearch indices could be duplicated during a package upgrade, due to an `elasticsearch-upgrade` service running multiple times in parallel.' - 'The `maint_host_low` job queues were not processed, resulting in some maintenance tasks failing to run.' - 'When converting a user account to an organization, if the user account was an owner of the {% data variables.product.prodname_ghe_server %} enterprise account, the converted organization would incorrectly appear in the enterprise owner list.' - - 'Creating an impersonation OAuth token using the Enterprise Administration REST API resulted in an error when an integration matching the OAuth Application ID already existed.' + - 'El crear un token de OAuth de personificación utilizando la API de REST de administración de empresas dio como resultado un error cuando una integración que coincidió con la ID de aplicación de OAuth ya existía.' changes: - 'When attempting to cache a value larger than the maximum allowed in Memcached, an error was raised however the key was not reported.' known_issues: diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-2/11.yml b/translations/es-ES/data/release-notes/enterprise-server/3-2/11.yml index 6468c96dbc..ade952ad6b 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/3-2/11.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/3-2/11.yml @@ -1,7 +1,7 @@ date: '2022-04-04' sections: security_fixes: - - 'MEDIUM: A path traversal vulnerability was identified in {% data variables.product.prodname_ghe_server %} Management Console that allowed the bypass of CSRF protections. This vulnerability affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.5 and was fixed in versions 3.1.19, 3.2.11, 3.3.6, 3.4.1. This vulnerability was reported via the {% data variables.product.prodname_dotcom %} Bug Bounty program and has been assigned CVE-2022-23732.' + - 'MEDIA: Se identificó una vulnerabilidad de recorrido de ruta en la consola de administración de {% data variables.product.prodname_ghe_server %}, la cual permitió un puenteo de las protecciones CSRF. Esta vulnerabilidad afectó a todas las versiones de {% data variables.product.prodname_ghe_server %} anteriores a la 3.5 y se corrigió en las versiones 3.1.19, 3.2.11, 3.3.6 y 3.4.1. Esta vulnerabilidad se reportó mediante el programa de recompensas por errores de {% data variables.product.prodname_dotcom %} y se le asignó el CVE-2022-23732.' - 'MEDIUM: An integer overflow vulnerability was identified in the 1.x branch and the 2.x branch of `yajil` which leads to subsequent heap memory corruption when dealing with large (~2GB) inputs. This vulnerability was reported internally and has been assigned CVE-2022-24795. ' - 'Support bundles could include sensitive files if {% data variables.product.prodname_actions %} was enabled.' - 'Los paquetes se actualizaron a las últimas versiones de seguridad.' @@ -9,7 +9,7 @@ sections: - 'Minio processes would have high CPU usage if an old configuration option was present after upgrading {% data variables.product.prodname_ghe_server %}.' - 'The options to enable `TLS 1.0` and `TLS 1.1` in the Privacy settings of the Management Console were shown, although removal of those protocol versions occurred in an earlier release.' - 'In a HA environment, configuring MSSQL replication could require additional manual steps after enabling {% data variables.product.prodname_actions %} for the first time.' - - 'A subset of internal configuration files are more reliably updated after a hotpatch.' + - 'Un subconjunto de archivos de configuración interna se actualiza de forma más confiable después de un hotpatch.' - 'The `ghe-run-migrations` script would sometimes fail to generate temporary certificate names correctly.' - 'In a cluster environment, Git LFS operations could fail with failed internal API calls that crossed multiple web nodes.' - 'Pre-receive hooks that used `gpg --import` timed out due to insufficient `syscall` privileges.' @@ -21,9 +21,9 @@ sections: - 'The {% data variables.product.prodname_actions %} deployment graph would display an error when rendering a pending job.' - 'Links to inaccessible pages were removed.' - 'Navigating away from a comparison of two commits in the web UI would have the diff persist in other pages.' - - 'Adding a team as a reviewer to a pull request would sometimes show the incorrect number of members on that team.' + - 'El agregar a un equipo como revisor para una solicitud de cambios algunas veces muestra la cantidad incorrecta de miembros en un equipo.' - 'The [Remove team membership for a user](/rest/reference/teams#remove-team-membership-for-a-user) API endpoint would respond with an error when attempting to remove a member managed externally by a SCIM group.' - - 'A large number of dormant users could cause a {% data variables.product.prodname_github_connect %} configuration to fail.' + - 'Una gran cantidad de usuarios inactivos podría ocasionar que falle una configuración de {% data variables.product.prodname_github_connect %}.' - 'The "Feature & beta enrollments" page in the Site admin web UI was incorrectly available.' - 'The "Site admin mode" link in the site footer did not change state when clicked.' - 'The `spokesctl cache-policy rm` command no longer fails with the message `error: failed to delete cache policy`.' diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-2/12.yml b/translations/es-ES/data/release-notes/enterprise-server/3-2/12.yml index 926821b335..7f35bf5c9f 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/3-2/12.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/3-2/12.yml @@ -9,7 +9,7 @@ sections: - 'When converting a user account to an organization, if the user account was an owner of the {% data variables.product.prodname_ghe_server %} enterprise account, the converted organization would incorrectly appear in the enterprise owner list.' - 'Creating an impersonation OAuth token using the Enterprise Administration REST API worked incorrectly when an integration matching the OAuth Application ID already existed.' changes: - - 'Configuration errors that halt a config apply run are now output to the terminal in addition to the configuration log.' + - 'Los errores de configuración que detienen una ejecución de aplicación de configuraciones ahora son el producto de la terminal adicionalmente a la bitácora de configuración.' - 'When attempting to cache a value larger than the maximum allowed in Memcached, an error was raised however the key was not reported.' - 'The {% data variables.product.prodname_codeql %} starter workflow no longer errors even if the default token permissions for {% data variables.product.prodname_actions %} are not used.' - 'If {% data variables.product.prodname_GH_advanced_security %} features are enabled on your instance, the performance of background jobs has improved when processing batches for repository contributions.' diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-3/6.yml b/translations/es-ES/data/release-notes/enterprise-server/3-3/6.yml index 7a558ead7c..5cd4c7c96c 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/3-3/6.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/3-3/6.yml @@ -1,7 +1,7 @@ date: '2022-04-04' sections: security_fixes: - - 'MEDIUM: A path traversal vulnerability was identified in {% data variables.product.prodname_ghe_server %} Management Console that allowed the bypass of CSRF protections. This vulnerability affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.5 and was fixed in versions 3.1.19, 3.2.11, 3.3.6, 3.4.1. This vulnerability was reported via the {% data variables.product.prodname_dotcom %} Bug Bounty program and has been assigned CVE-2022-23732.' + - 'MEDIA: Se identificó una vulnerabilidad de recorrido de ruta en la consola de administración de {% data variables.product.prodname_ghe_server %}, la cual permitió un puenteo de las protecciones CSRF. Esta vulnerabilidad afectó a todas las versiones de {% data variables.product.prodname_ghe_server %} anteriores a la 3.5 y se corrigió en las versiones 3.1.19, 3.2.11, 3.3.6 y 3.4.1. Esta vulnerabilidad se reportó mediante el programa de recompensas por errores de {% data variables.product.prodname_dotcom %} y se le asignó el CVE-2022-23732.' - 'MEDIUM: An integer overflow vulnerability was identified in the 1.x branch and the 2.x branch of `yajil` which leads to subsequent heap memory corruption when dealing with large (~2GB) inputs. This vulnerability was reported internally and has been assigned CVE-2022-24795. ' - 'Support bundles could include sensitive files if {% data variables.product.prodname_actions %} was enabled.' - 'Los paquetes se actualizaron a las últimas versiones de seguridad.' @@ -10,7 +10,7 @@ sections: - 'Minio processes would have high CPU usage if an old configuration option was present after upgrading {% data variables.product.prodname_ghe_server %}.' - 'The options to enable `TLS 1.0` and `TLS 1.1` in the Privacy settings of the Management Console were shown, although removal of those protocol versions occurred in an earlier release.' - 'In a HA environment, configuring MSSQL replication could require additional manual steps after enabling {% data variables.product.prodname_actions %} for the first time.' - - 'A subset of internal configuration files are more reliably updated after a hotpatch.' + - 'Un subconjunto de archivos de configuración interna se actualiza de forma más confiable después de un hotpatch.' - 'The `ghe-run-migrations` script would sometimes fail to generate temporary certificate names correctly.' - 'In a cluster environment, Git LFS operations could fail with failed internal API calls that crossed multiple web nodes.' - 'Pre-receive hooks that used `gpg --import` timed out due to insufficient `syscall` privileges.' @@ -23,9 +23,9 @@ sections: - 'Some instances experienced high CPU usage due to large amounts unnecessary background jobs being queued.' - 'LDAP user sync jobs would fail when trying to sync GPG keys that had been synced previously.' - 'Following a link to a pull request from the users Pull Request dashboard would result in the repository header not loading.' - - 'Adding a team as a reviewer to a pull request would sometimes show the incorrect number of members on that team.' + - 'El agregar a un equipo como revisor para una solicitud de cambios algunas veces muestra la cantidad incorrecta de miembros en un equipo.' - 'The remove team membership API endpoint would respond with an error when attempting to remove member externally managed via a SCIM Group.' - - 'A large number of dormant users could cause a {% data variables.product.prodname_github_connect %} configuration to fail.' + - 'Una gran cantidad de usuarios inactivos podría ocasionar que falle una configuración de {% data variables.product.prodname_github_connect %}.' - 'The "Feature & beta enrollments" page in the Site admin web UI was incorrectly available.' - 'The "Site admin mode" link in the site footer did not change state when clicked.' - 'The `spokesctl cache-policy rm` command no longer fails with the message `error: failed to delete cache policy`.' diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-3/7.yml b/translations/es-ES/data/release-notes/enterprise-server/3-3/7.yml index b5c73c2c23..9fe242ce64 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/3-3/7.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/3-3/7.yml @@ -11,11 +11,11 @@ sections: - 'Elasticsearch indices could be duplicated during a package upgrade, due to an `elasticsearch-upgrade` service running multiple times in parallel.' - 'In the pull request and commit views, rich diffs would fail to load for some files tracked by Git LFS.' - 'When converting a user account to an organization, if the user account was an owner of the {% data variables.product.prodname_ghe_server %} enterprise account, the converted organization would incorrectly appear in the enterprise owner list.' - - 'Creating an impersonation OAuth token using the Enterprise Administration REST API resulted in an error when an integration matching the OAuth Application ID already existed.' + - 'El crear un token de OAuth de personificación utilizando la API de REST de administración de empresas dio como resultado un error cuando una integración que coincidió con la ID de aplicación de OAuth ya existía.' - 'The Secret Scanning REST API would return a `500` response code when there were UTF8 characters present in a detected secret.' - 'Repository cache servers could serve data from non-cache locations even when the data was available in the local cache location.' changes: - - 'Configuration errors that halt a config apply run are now output to the terminal in addition to the configuration log.' + - 'Los errores de configuración que detienen una ejecución de aplicación de configuraciones ahora son el producto de la terminal adicionalmente a la bitácora de configuración.' - 'When attempting to cache a value larger than the maximum allowed in Memcached, an error was raised however the key was not reported.' - 'If {% data variables.product.prodname_GH_advanced_security %} features are enabled on your instance, the performance of background jobs has improved when processing batches for repository contributions.' known_issues: diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-4/0-rc1.yml b/translations/es-ES/data/release-notes/enterprise-server/3-4/0-rc1.yml index 8ec4174ec7..d1572ab986 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/3-4/0-rc1.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/3-4/0-rc1.yml @@ -78,7 +78,7 @@ sections: notes: - Ahora puedes utilizar la página de ajustes de "Accesibilidad" para administrar tus atajos de teclado. Puedes elegir inhabilitar aquellos que solo utilicen caracteres sencillos como S, G C y . (la tecla de punto). Para obtener más información, consulta la "[Bitácora de cambios de {% data variables.product.prodname_dotcom %}](https://github.blog/changelog/2021-11-16-managing-keyboard-shortcuts-using-accessibility-settings/)". - You can now choose to use a fixed-width font in Markdown-enabled fields, like issue comments and pull request descriptions. For more information, see the "[{% data variables.product.prodname_dotcom %} changelog](https://github.blog/changelog/2021-10-12-fixed-width-font-support-in-markdown-enabled-fields/)." - - You can now paste a URL on selected text to quickly create a Markdown link. This works in all Markdown-enabled fields, such as issue comments and pull request descriptions. For more information, see the "[{% data variables.product.prodname_dotcom %} changelog](https://github.blog/changelog/2021-11-10-linkify-selected-text-on-url-paste/)." + - Ahora puedes pegar la URL en el texto seleccionado para crear rápidamente un enlace de lenguaje de marcado. Esto funciona en todos los campos con lenguaje de marcado habilitado, tal como los comentarios en las propuestas y las descripciones en las solicitudes de cambio. Para obtener más información, consulta la sección "[Bitácora de cambios de {% data variables.product.prodname_dotcom %}](https://github.blog/changelog/2021-11-10-linkify-selected-text-on-url-paste/)". - 'An image URL can now be appended with a theme context, such as `#gh-dark-mode-only`, to define how the Markdown image is displayed to a viewer. For more information, see the "[{% data variables.product.prodname_dotcom %} changelog](https://github.blog/changelog/2021-11-24-specify-theme-context-for-images-in-markdown/)."' - Al crear o editar un archivo de gist con la extensión de archivo de lenguaje de marcado (`.md`), ahora puedes utilizar la pestaña de "Vista previa" o "Cambios a la vista previa" para mostrar un lenguaje de marcado que interprete el contenido del archivo. Para obtener más información, consulta la "[Bitácora de cambios de {% data variables.product.prodname_dotcom %}](https://github.blog/changelog/2021-11-17-preview-the-markdown-rendering-of-gists/)". - When typing the name of a {% data variables.product.prodname_dotcom %} user in issues, pull requests and discussions, the @mention suggester now ranks existing participants higher than other {% data variables.product.prodname_dotcom %} users, so that it's more likely the user you're looking for will be listed. diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-4/0.yml b/translations/es-ES/data/release-notes/enterprise-server/3-4/0.yml index 41b19b0c1d..eaba12369d 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/3-4/0.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/3-4/0.yml @@ -77,7 +77,7 @@ sections: notes: - Ahora puedes utilizar la página de ajustes de "Accesibilidad" para administrar tus atajos de teclado. Puedes elegir inhabilitar aquellos que solo utilicen caracteres sencillos como S, G C y . (la tecla de punto). Para obtener más información, consulta la "[Bitácora de cambios de {% data variables.product.prodname_dotcom %}](https://github.blog/changelog/2021-11-16-managing-keyboard-shortcuts-using-accessibility-settings/)". - You can now choose to use a fixed-width font in Markdown-enabled fields, like issue comments and pull request descriptions. For more information, see the "[{% data variables.product.prodname_dotcom %} changelog](https://github.blog/changelog/2021-10-12-fixed-width-font-support-in-markdown-enabled-fields/)." - - You can now paste a URL on selected text to quickly create a Markdown link. This works in all Markdown-enabled fields, such as issue comments and pull request descriptions. For more information, see the "[{% data variables.product.prodname_dotcom %} changelog](https://github.blog/changelog/2021-11-10-linkify-selected-text-on-url-paste/)." + - Ahora puedes pegar la URL en el texto seleccionado para crear rápidamente un enlace de lenguaje de marcado. Esto funciona en todos los campos con lenguaje de marcado habilitado, tal como los comentarios en las propuestas y las descripciones en las solicitudes de cambio. Para obtener más información, consulta la sección "[Bitácora de cambios de {% data variables.product.prodname_dotcom %}](https://github.blog/changelog/2021-11-10-linkify-selected-text-on-url-paste/)". - 'Ahora se puede anexar una URL de imagen con un contexto de tema, tal como `#gh-dark-mode-only`, para definir cómo se muestra la imagen de lenguaje de marcado en un visualizador. Para obtener más información, consulta la "[Bitácora de cambios de {% data variables.product.prodname_dotcom %}](https://github.blog/changelog/2021-11-24-specify-theme-context-for-images-in-markdown/)".' - Al crear o editar un archivo de gist con la extensión de archivo de lenguaje de marcado (`.md`), ahora puedes utilizar la pestaña de "Vista previa" o "Cambios a la vista previa" para mostrar un lenguaje de marcado que interprete el contenido del archivo. Para obtener más información, consulta la "[Bitácora de cambios de {% data variables.product.prodname_dotcom %}](https://github.blog/changelog/2021-11-17-preview-the-markdown-rendering-of-gists/)". - When typing the name of a {% data variables.product.prodname_dotcom %} user in issues, pull requests and discussions, the @mention suggester now ranks existing participants higher than other {% data variables.product.prodname_dotcom %} users, so that it's more likely the user you're looking for will be listed. diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-4/1.yml b/translations/es-ES/data/release-notes/enterprise-server/3-4/1.yml index f4b54461e0..9899d2ed8b 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/3-4/1.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/3-4/1.yml @@ -1,7 +1,7 @@ date: '2022-04-04' sections: security_fixes: - - 'MEDIUM: A path traversal vulnerability was identified in {% data variables.product.prodname_ghe_server %} Management Console that allowed the bypass of CSRF protections. This vulnerability affected all versions of {% data variables.product.prodname_ghe_server %} prior to 3.5 and was fixed in versions 3.1.19, 3.2.11, 3.3.6, 3.4.1. This vulnerability was reported via the {% data variables.product.prodname_dotcom %} Bug Bounty program and has been assigned CVE-2022-23732.' + - 'MEDIA: Se identificó una vulnerabilidad de recorrido de ruta en la consola de administración de {% data variables.product.prodname_ghe_server %}, la cual permitió un puenteo de las protecciones CSRF. Esta vulnerabilidad afectó a todas las versiones de {% data variables.product.prodname_ghe_server %} anteriores a la 3.5 y se corrigió en las versiones 3.1.19, 3.2.11, 3.3.6 y 3.4.1. Esta vulnerabilidad se reportó mediante el programa de recompensas por errores de {% data variables.product.prodname_dotcom %} y se le asignó el CVE-2022-23732.' - 'MEDIUM: An integer overflow vulnerability was identified in the 1.x branch and the 2.x branch of `yajil` which leads to subsequent heap memory corruption when dealing with large (~2GB) inputs. This vulnerability was reported internally and has been assigned CVE-2022-24795. ' - 'Support bundles could include sensitive files if {% data variables.product.prodname_actions %} was enabled.' - 'Los paquetes se actualizaron a las últimas versiones de seguridad.' @@ -52,16 +52,16 @@ sections: - heading: 'Obsoletización de GitHub Enterprise Server 3.0' notes: - '**{% data variables.product.prodname_ghe_server %} 3.0 se descontinuó el 16 de febrero de 2022**. Esto significa que no se harán lanzamientos de parche, aún para los problemas de seguridad críticos, después de esta fecha. Para obtener un rendimiento mejor, una seguridad mejorada y características nuevas, [actualiza a la última versión de {% data variables.product.prodname_ghe_server %}](/enterprise-server@3.4/admin/enterprise-management/upgrading-github-enterprise-server) tan pronto te sea posible.' - - heading: 'Deprecation of GitHub Enterprise Server 3.1' + - heading: 'Obsoletización de GitHub Enterprise Server 3.1' notes: - '**{% data variables.product.prodname_ghe_server %} 3.1 se descontinuará el 3 de junio de 2022**. Eso significa que no se harán lanzamientos de parche, aún para los problemas de seguridad críticos, después de esta fecha. Para obtener un rendimiento mejor, una seguridad mejorada y características nuevas, [actualiza a la última versión de {% data variables.product.prodname_ghe_server %}](/enterprise-server@3.4/admin/enterprise-management/upgrading-github-enterprise-server) tan pronto te sea posible.' - heading: 'Obsoletización del soporte para XenServer Hypervisor' notes: - 'Starting in {% data variables.product.prodname_ghe_server %} 3.3, {% data variables.product.prodname_ghe_server %} on XenServer was deprecated and is no longer supported. Please contact [GitHub Support](https://support.github.com) with questions or concerns.' - - heading: 'Deprecation of the Content Attachments API preview' + - heading: 'Obsoletización de la vista previa de la API de adjuntos de contenido' notes: - 'Debido a su poco uso, la vista previa de la API de referencias de contenido se hizo obsoleta en {% data variables.product.prodname_ghe_server %} 3.4. Anteriormente, se podía acceder a la API con el encabezado `corsair-preview`. Los usuarios pueden seguir navegando hacia URL externas sin esta API. Cualquier uso registrado de la API de referencias de contenido ya no recibirá una notificación de webhook para las URL de tus dominios registrados y ya no devolveremos códigos de respuesta válidos para los intentos de actualización a los adjuntos de contenido existentes.' - - heading: 'Deprecation of the Codes of Conduct API preview' + - heading: 'Obsoletización de la vista previa de la API de códigos de conducta' notes: - 'La vista previa de la API de códigos de conducta, a la cual se podía acceder con el encabezado `scarlet-witch-preview`, es obsoleta y ya no se puede acceder a ella en {% data variables.product.prodname_ghe_server %} 3.4. En vez de esto, te recomendamos utilizar la terminal de "[Obtén métricas de perfil comunitario](/rest/reference/repos#get-community-profile-metrics)" para recuperar información sobre un código de conducta de un repositorio. Para obtener más información, consulta el "[Aviso de obsolescencia: Vista previa de la API de códigos de conducta](https://github.blog/changelog/2021-10-06-deprecation-notice-codes-of-conduct-api-preview/)" en la bitácora de cambios de {% data variables.product.prodname_dotcom %}.' - heading: 'Obsoletización de las terminales de la API de Aplicaciones OAuth y autenticación de la API a través de parámetros de consulta' diff --git a/translations/es-ES/data/release-notes/enterprise-server/3-4/2.yml b/translations/es-ES/data/release-notes/enterprise-server/3-4/2.yml index da67ae87a9..f77434d85d 100644 --- a/translations/es-ES/data/release-notes/enterprise-server/3-4/2.yml +++ b/translations/es-ES/data/release-notes/enterprise-server/3-4/2.yml @@ -32,16 +32,16 @@ sections: - heading: 'Obsoletización de GitHub Enterprise Server 3.0' notes: - '**{% data variables.product.prodname_ghe_server %} 3.0 se descontinuó el 16 de febrero de 2022**. Esto significa que no se harán lanzamientos de parche, aún para los problemas de seguridad críticos, después de esta fecha. Para obtener un rendimiento mejor, una seguridad mejorada y características nuevas, [actualiza a la última versión de {% data variables.product.prodname_ghe_server %}](/enterprise-server@3.4/admin/enterprise-management/upgrading-github-enterprise-server) tan pronto te sea posible.' - - heading: 'Deprecation of GitHub Enterprise Server 3.1' + - heading: 'Obsoletización de GitHub Enterprise Server 3.1' notes: - '**{% data variables.product.prodname_ghe_server %} 3.1 se descontinuará el 3 de junio de 2022**. Eso significa que no se harán lanzamientos de parche, aún para los problemas de seguridad críticos, después de esta fecha. Para obtener un rendimiento mejor, una seguridad mejorada y características nuevas, [actualiza a la última versión de {% data variables.product.prodname_ghe_server %}](/enterprise-server@3.4/admin/enterprise-management/upgrading-github-enterprise-server) tan pronto te sea posible.' - heading: 'Obsoletización del soporte para XenServer Hypervisor' notes: - 'Starting in {% data variables.product.prodname_ghe_server %} 3.3, {% data variables.product.prodname_ghe_server %} on XenServer was deprecated and is no longer supported. Please contact [GitHub Support](https://support.github.com) with questions or concerns.' - - heading: 'Deprecation of the Content Attachments API preview' + - heading: 'Obsoletización de la vista previa de la API de adjuntos de contenido' notes: - 'Debido a su poco uso, la vista previa de la API de referencias de contenido se hizo obsoleta en {% data variables.product.prodname_ghe_server %} 3.4. Anteriormente, se podía acceder a la API con el encabezado `corsair-preview`. Los usuarios pueden seguir navegando hacia URL externas sin esta API. Cualquier uso registrado de la API de referencias de contenido ya no recibirá una notificación de webhook para las URL de tus dominios registrados y ya no devolveremos códigos de respuesta válidos para los intentos de actualización a los adjuntos de contenido existentes.' - - heading: 'Deprecation of the Codes of Conduct API preview' + - heading: 'Obsoletización de la vista previa de la API de códigos de conducta' notes: - 'La vista previa de la API de códigos de conducta, a la cual se podía acceder con el encabezado `scarlet-witch-preview`, es obsoleta y ya no se puede acceder a ella en {% data variables.product.prodname_ghe_server %} 3.4. En vez de esto, te recomendamos utilizar la terminal de "[Obtén métricas de perfil comunitario](/rest/reference/repos#get-community-profile-metrics)" para recuperar información sobre un código de conducta de un repositorio. Para obtener más información, consulta el "[Aviso de obsolescencia: Vista previa de la API de códigos de conducta](https://github.blog/changelog/2021-10-06-deprecation-notice-codes-of-conduct-api-preview/)" en la bitácora de cambios de {% data variables.product.prodname_dotcom %}.' - heading: 'Obsoletización de las terminales de la API de Aplicaciones OAuth y autenticación de la API a través de parámetros de consulta' diff --git a/translations/es-ES/data/reusables/classroom/reuse-assignment-link.md b/translations/es-ES/data/reusables/classroom/reuse-assignment-link.md index 73b7419440..84eda369f4 100644 --- a/translations/es-ES/data/reusables/classroom/reuse-assignment-link.md +++ b/translations/es-ES/data/reusables/classroom/reuse-assignment-link.md @@ -1 +1 @@ -You can reuse an existing assignment in any other classroom you have admin access to, including classrooms in a different organization. For more information, see "[Reuse an assignment](/education/manage-coursework-with-github-classroom/teach-with-github-classroom/reuse-an-assignment)." \ No newline at end of file +You can reuse an existing assignment in any other classroom you have admin access to, including classrooms in a different organization. Para obtener más información, consulta la sección "[Reutilizar una tarea](/education/manage-coursework-with-github-classroom/teach-with-github-classroom/reuse-an-assignment)". \ No newline at end of file diff --git a/translations/es-ES/data/reusables/codespaces/concurrent-codespace-limit.md b/translations/es-ES/data/reusables/codespaces/concurrent-codespace-limit.md index 37b0f0d7d5..700142b2f8 100644 --- a/translations/es-ES/data/reusables/codespaces/concurrent-codespace-limit.md +++ b/translations/es-ES/data/reusables/codespaces/concurrent-codespace-limit.md @@ -1 +1 @@ -Puedes crear más de un codespace por repositorio o incluso por rama. However, each personal account has a limit of 10 codespaces. Si has alcanzado el límite y quieres crear un codespace nuevo, primero debes borrar un codespace. +Puedes crear más de un codespace por repositorio o incluso por rama. Sin embargo, cada cuenta personal tiene un límite de 10 codespaces. Si has alcanzado el límite y quieres crear un codespace nuevo, primero debes borrar un codespace. diff --git a/translations/es-ES/data/reusables/codespaces/creating-a-codespace-in-vscode.md b/translations/es-ES/data/reusables/codespaces/creating-a-codespace-in-vscode.md index 31f21db35a..b7f37db217 100644 --- a/translations/es-ES/data/reusables/codespaces/creating-a-codespace-in-vscode.md +++ b/translations/es-ES/data/reusables/codespaces/creating-a-codespace-in-vscode.md @@ -2,7 +2,7 @@ Después de que conectes tu cuenta de {% data variables.product.product_location {% note %} -**Note**: Currently, {% data variables.product.prodname_vscode %} doesn't allow you to choose a dev container configuration when you create a codespace. If you want to choose a specific dev container configuration, use the {% data variables.product.prodname_dotcom %} web interface to create your codespace. For more information, click the **Web browser** tab at the top of this page. +**Note**: Currently, {% data variables.product.prodname_vscode %} doesn't allow you to choose a dev container configuration when you create a codespace. Si quieres elegir una configuración de contenedor dev específica, utiliza la interfaz web de {% data variables.product.prodname_dotcom %} para crear tu codespace. For more information, click the **Web browser** tab at the top of this page. {% endnote %} diff --git a/translations/es-ES/data/reusables/codespaces/restrict-port-visibility.md b/translations/es-ES/data/reusables/codespaces/restrict-port-visibility.md index 3d50309388..aec791e79d 100644 --- a/translations/es-ES/data/reusables/codespaces/restrict-port-visibility.md +++ b/translations/es-ES/data/reusables/codespaces/restrict-port-visibility.md @@ -1 +1 @@ -Organization owners can restrict the ability to make forward ports available publicly or within the organization. For more information, see "[Restricting the visibility of forwarded ports](/codespaces/managing-codespaces-for-your-organization/restricting-the-visibility-of-forwarded-ports)." \ No newline at end of file +Los propietarios de las organizaciones pueden restringir la capacidad para hacer que los puertos reenviados estén disponibles públicamente o dentro de la organización. Para obtener más información, consulta la sección "[restringir la visbilidad de los puertos reenviados](/codespaces/managing-codespaces-for-your-organization/restricting-the-visibility-of-forwarded-ports)". \ No newline at end of file diff --git a/translations/es-ES/data/reusables/codespaces/secret-precedence.md b/translations/es-ES/data/reusables/codespaces/secret-precedence.md index 1c385e5b3e..1579909c13 100644 --- a/translations/es-ES/data/reusables/codespaces/secret-precedence.md +++ b/translations/es-ES/data/reusables/codespaces/secret-precedence.md @@ -1 +1 @@ -If a secret with the same name exists at multiple levels, the secret at the lowest level takes precedence. Por ejemplo, si un secreto a nivel de organización tiene el mismo nombre que un secreto a nivel de repositorio, entonces el secreto a nivel de repositorio tomará precedencia. +Si existe un secreto con el mismo nombre en varios niveles, el que esté en el nivel más bajo tomará precedencia. Por ejemplo, si un secreto a nivel de organización tiene el mismo nombre que un secreto a nivel de repositorio, entonces el secreto a nivel de repositorio tomará precedencia. diff --git a/translations/es-ES/data/reusables/dependabot/enabling-disabling-dependency-graph-private-repo.md b/translations/es-ES/data/reusables/dependabot/enabling-disabling-dependency-graph-private-repo.md index d87b9ee200..c011229867 100644 --- a/translations/es-ES/data/reusables/dependabot/enabling-disabling-dependency-graph-private-repo.md +++ b/translations/es-ES/data/reusables/dependabot/enabling-disabling-dependency-graph-private-repo.md @@ -5,4 +5,4 @@ También puedes habilitar o inhabilitar la gráfica de dependencias para todos l {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} {% data reusables.repositories.navigate-to-code-security-and-analysis %} -4. Lee los mensajes sobre el otorgar acceso de solo lectura a {% data variables.product.product_name %} para los datos del repositorio para así habilitar la gráfica de dependencias, posteriormente, da clic en **Habilitar** junto a "Gráfica de Dependencias". !["Enable" button for the dependency graph](/assets/images/help/repository/dependency-graph-enable-button.png) You can disable the dependency graph at any time by clicking **Disable** next to "Dependency Graph" on the settings page for {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-5658 %}"Code security and analysis."{% else %}"Security & analysis."{% endif %} +4. Lee los mensajes sobre el otorgar acceso de solo lectura a {% data variables.product.product_name %} para los datos del repositorio para así habilitar la gráfica de dependencias, posteriormente, da clic en **Habilitar** junto a "Gráfica de Dependencias". !["Enable" button for the dependency graph](/assets/images/help/repository/dependency-graph-enable-button.png) Puedes inhabilitar la gráfica de dependencias en cualquier momento si haces clic en **Inhabilitar** junto a "Gráfica de dependencias" en la página de ajustes de {% ifversion fpt or ghec or ghes > 3.4 or ghae-issue-5658 %}"Análisis y seguridad de código."{% else %}"Seguridad & análisis."{% endif %} diff --git a/translations/es-ES/data/reusables/discussions/about-categories-and-formats.md b/translations/es-ES/data/reusables/discussions/about-categories-and-formats.md index 5f1ce17b1b..2c2b0258aa 100644 --- a/translations/es-ES/data/reusables/discussions/about-categories-and-formats.md +++ b/translations/es-ES/data/reusables/discussions/about-categories-and-formats.md @@ -1 +1 @@ -Todos los debates deben crearse en una categoría. For repository discussions, people with maintain or admin permissions to the repository define the categories for discussions in that repository. For organization discussions, people with maintain or admin permissions to the source repository define the categories for discussions in that organization. Cada categoría tiene un formato: debate abierto, pregunta y respuesta o anucio. +Todos los debates deben crearse en una categoría. Para los debates de los repositorios, las personas con permisos administrativos o de mantenedor en este pueden definir las categorías de dichos debates en ellos. Para los debates de las organizaciones, las personas con permisos administrativos o de mantenedor en el repositorio origen pueden definir las categorías de dichos debates en estas organizaciones. Cada categoría tiene un formato: debate abierto, pregunta y respuesta o anucio. diff --git a/translations/es-ES/data/reusables/discussions/about-discussions.md b/translations/es-ES/data/reusables/discussions/about-discussions.md index 2d6aa2eca4..11836b62e4 100644 --- a/translations/es-ES/data/reusables/discussions/about-discussions.md +++ b/translations/es-ES/data/reusables/discussions/about-discussions.md @@ -1 +1 @@ -{% data variables.product.prodname_discussions %} is an open forum for conversation among maintainers and the community for a repository or organization on {% data variables.product.product_name %}. +Los {% data variables.product.prodname_discussions %} son un foro abierto para que los mantenedores y la comunidad conversen sobre un repositorio u organización de {% data variables.product.product_name %}. diff --git a/translations/es-ES/data/reusables/discussions/discussions-tab.md b/translations/es-ES/data/reusables/discussions/discussions-tab.md index 39b7133e95..78422361a9 100644 --- a/translations/es-ES/data/reusables/discussions/discussions-tab.md +++ b/translations/es-ES/data/reusables/discussions/discussions-tab.md @@ -1 +1 @@ -1. Under your repository or organization name, click {% octicon "comment-discussion" aria-label="The discussion icon" %} **Discussions**. ![Pestaña de "Debates" en un repositorio](/assets/images/help/discussions/repository-discussions-tab.png) +1. Debajo de tu nombre de organización o repositorio, haz clic en {% octicon "comment-discussion" aria-label="The discussion icon" %} **Debates**. ![Pestaña de "Debates" en un repositorio](/assets/images/help/discussions/repository-discussions-tab.png) diff --git a/translations/es-ES/data/reusables/discussions/repository-category-limit.md b/translations/es-ES/data/reusables/discussions/repository-category-limit.md index b1a8e50e1a..b6811d86c6 100644 --- a/translations/es-ES/data/reusables/discussions/repository-category-limit.md +++ b/translations/es-ES/data/reusables/discussions/repository-category-limit.md @@ -1 +1 @@ -Each repository or organization can have up to 10 categories. +Cada repositorio u organización puede tener hasta 10 categorías. diff --git a/translations/es-ES/data/reusables/discussions/starting-a-discussion.md b/translations/es-ES/data/reusables/discussions/starting-a-discussion.md index 40f760055a..27e2654365 100644 --- a/translations/es-ES/data/reusables/discussions/starting-a-discussion.md +++ b/translations/es-ES/data/reusables/discussions/starting-a-discussion.md @@ -1,5 +1,5 @@ -1. Activado -{% data variables.product.product_location %}, navigate to the main page of the repository or organization where you want to start a discussion. +1. En +{% data variables.product.product_location %}, navega a la página principal del repositorio u organización en donde quieras iniciar un debate. {% data reusables.discussions.discussions-tab %} 1. Da clic en **Debate nuevo**. ![Botón de "Debate nuevo" dentro de la pestaña de "Debates" en un repositorio](/assets/images/help/discussions/new-discussion-button.png) 1. Selecciona el menú desplegable de **Seleccionar categoría** y da clic en una categoría para tu debate. ![Menú desplegable de "Seleccionar categoría" y lista de categorías disponibles en un repositorio](/assets/images/help/discussions/new-discussion-select-category-dropdown-menu.png) diff --git a/translations/es-ES/data/reusables/dotcom_billing/coupon-expires.md b/translations/es-ES/data/reusables/dotcom_billing/coupon-expires.md index 5a3de009cb..ef12b2a6b0 100644 --- a/translations/es-ES/data/reusables/dotcom_billing/coupon-expires.md +++ b/translations/es-ES/data/reusables/dotcom_billing/coupon-expires.md @@ -1 +1 @@ -Si utilizas un cupón para pagar una suscripción, cuando este venza, se hará un cobro a tu método de pago por el costo total de tu suscripción. If you do not have a saved payment method, your account will be downgraded to {% data variables.product.prodname_free_user %} for personal accounts or {% data variables.product.prodname_free_team %} for organizations. +Si utilizas un cupón para pagar una suscripción, cuando este venza, se hará un cobro a tu método de pago por el costo total de tu suscripción. Si no tienes un método de pago guardado, tu cuenta bajará de categoría a {% data variables.product.prodname_free_user %} para cuentas personales o a {% data variables.product.prodname_free_team %} para organizaciones. diff --git a/translations/es-ES/data/reusables/enterprise/link-to-ghe-trial.md b/translations/es-ES/data/reusables/enterprise/link-to-ghe-trial.md index c85fcbf7a9..6b5f6e2789 100644 --- a/translations/es-ES/data/reusables/enterprise/link-to-ghe-trial.md +++ b/translations/es-ES/data/reusables/enterprise/link-to-ghe-trial.md @@ -1 +1 @@ -For more information about how you can try {% data variables.product.prodname_enterprise %} for free, see "[Setting up a trial of {% data variables.product.prodname_ghe_cloud %}]({% ifversion ghae %}/enterprise-cloud@latest{% endif %}/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud)" and "[Setting up a trial of {% data variables.product.prodname_ghe_server %}]({% ifversion ghae %}/enterprise-cloud@latest{% endif %}/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-server)." +Para obtener más información sobre cómo puedes probar {% data variables.product.prodname_enterprise %} gratuitamente, consulta las secciones "[Configurar una prueba de {% data variables.product.prodname_ghe_cloud %}]({% ifversion ghae %}/enterprise-cloud@latest{% endif %}/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-cloud)" y "[Configurar una prueba de {% data variables.product.prodname_ghe_server %}]({% ifversion ghae %}/enterprise-cloud@latest{% endif %}/get-started/signing-up-for-github/setting-up-a-trial-of-github-enterprise-server)". diff --git a/translations/es-ES/data/reusables/enterprise_user_management/consider-usernames-for-external-authentication.md b/translations/es-ES/data/reusables/enterprise_user_management/consider-usernames-for-external-authentication.md index e88fdc5bfd..dc6d81cc24 100644 --- a/translations/es-ES/data/reusables/enterprise_user_management/consider-usernames-for-external-authentication.md +++ b/translations/es-ES/data/reusables/enterprise_user_management/consider-usernames-for-external-authentication.md @@ -1 +1 @@ -{% data variables.product.product_name %} normalizes a value from your {% ifversion ghec or ghae %}IdP{% elsif ghes %}external authentication provider{% endif %} to determine the username for each new personal account {% ifversion ghae %}on {% data variables.product.product_name %}{% elsif ghec %}in your enterprise on {% data variables.product.product_location %}{% elsif ghes %}on {% data variables.product.product_location %}{% endif %}. +{% data variables.product.product_name %} normaliza un valor de tu {% ifversion ghec or ghae %}IdP{% elsif ghes %}proveedor de autenticación externo{% endif %} para determinar el nombre de usuario para cada cuenta personal nueva {% ifversion ghae %}en {% data variables.product.product_name %}{% elsif ghec %}en tu empresa en {% data variables.product.product_location %}{% elsif ghes %}en {% data variables.product.product_location %}{% endif %}. diff --git a/translations/es-ES/data/reusables/gated-features/org-insights.md b/translations/es-ES/data/reusables/gated-features/org-insights.md deleted file mode 100644 index b1e47226f2..0000000000 --- a/translations/es-ES/data/reusables/gated-features/org-insights.md +++ /dev/null @@ -1 +0,0 @@ -Las perspectivas de organización se encuentran disponibles con {% data variables.product.prodname_ghe_cloud %}. Para obtener más información, consulta "Productos de [{% data variables.product.prodname_dotcom %}](/articles/github-s-products)". diff --git a/translations/es-ES/data/reusables/gated-features/security-center.md b/translations/es-ES/data/reusables/gated-features/security-center.md index 7070dce1d1..1b41c79ffb 100644 --- a/translations/es-ES/data/reusables/gated-features/security-center.md +++ b/translations/es-ES/data/reusables/gated-features/security-center.md @@ -3,4 +3,4 @@ El resumen de seguridad de tu organización se encuentra disponible si tienes un {% elsif ghec or ghes %} El resumen de seguridad de tu organización se encuentra disponible si tienes una licencia para la {% data variables.product.prodname_GH_advanced_security %}. {% data reusables.advanced-security.more-info-ghas %} {% elsif fpt %} -The security overview is available for organizations that use {% data variables.product.prodname_enterprise %} and have a license for {% data variables.product.prodname_GH_advanced_security %}. For more information, see "[About {% data variables.product.prodname_GH_advanced_security %}](/get-started/learning-about-github/about-github-advanced-security)." {% endif %} \ No newline at end of file +El resumen de seguridad se encuentra disponible para las organizaciones que utilizan {% data variables.product.prodname_enterprise %} y tienen una licencia para {% data variables.product.prodname_GH_advanced_security %}. For more information, see "[About {% data variables.product.prodname_GH_advanced_security %}](/get-started/learning-about-github/about-github-advanced-security)." {% endif %} \ No newline at end of file diff --git a/translations/es-ES/data/reusables/package_registry/visibility-and-access-permissions.md b/translations/es-ES/data/reusables/package_registry/visibility-and-access-permissions.md index 222f704715..320dbe1822 100644 --- a/translations/es-ES/data/reusables/package_registry/visibility-and-access-permissions.md +++ b/translations/es-ES/data/reusables/package_registry/visibility-and-access-permissions.md @@ -3,7 +3,7 @@ Si tienes permisos administrativos en una imagen de contenedor, peudes configura Como administrador, también puedes otorgar permisos de acceso para una imagen de contenedor que esté separada de los permisos que configuraste a nivel de organización y de repositorio. -For container images published and owned by a personal account, you can give any person an access role. Puedes otorgar un rol de acceso a cualquier persona o equipo en la organización para las imágenes de contenedor que pertenecen a, o que publica una cuenta de usuario. +Para el caso de las imágenes que publique y le pertenezcan a una cuenta personal, puedes darle un rol de acceso a cualquier persona. Puedes otorgar un rol de acceso a cualquier persona o equipo en la organización para las imágenes de contenedor que pertenecen a, o que publica una cuenta de usuario. | Permiso | Descripción del acceso | | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | diff --git a/translations/es-ES/data/reusables/saml/must-authorize-linked-identity.md b/translations/es-ES/data/reusables/saml/must-authorize-linked-identity.md index 4a28cb364a..1460a2b72e 100644 --- a/translations/es-ES/data/reusables/saml/must-authorize-linked-identity.md +++ b/translations/es-ES/data/reusables/saml/must-authorize-linked-identity.md @@ -1,5 +1,5 @@ {% note %} -**Note:** If you have a linked identity for an organization, you can only use authorized personal access tokens and SSH keys with that organization, even if SAML is not enforced. You have a linked identity for an organization if you've ever authenticated via SAML SSO for that organization, unless an organization or enterprise owner later revoked the linked identity. For more information about revoking linked identities, see "[Viewing and managing a member's SAML access to your organization](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization)" and "[Viewing and managing a user's SAML access to your enterprise](/admin/user-management/managing-users-in-your-enterprise/viewing-and-managing-a-users-saml-access-to-your-enterprise)." +**Note:** If you have a linked identity for an organization, you can only use authorized personal access tokens and SSH keys with that organization, even if SAML is not enforced. You have a linked identity for an organization if you've ever authenticated via SAML SSO for that organization, unless an organization or enterprise owner later revoked the linked identity. Para obtener más información sobre cómo revocar las identidades enlazadas, consulta las secciones "[Visualizar y administrar el acceso de SAML de un miembro a tu organización](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization)" y "[Visualizar y administrar el acceso de SAML de un usuario a tu empresa](/admin/user-management/managing-users-in-your-enterprise/viewing-and-managing-a-users-saml-access-to-your-enterprise)". {% endnote %} \ No newline at end of file diff --git a/translations/es-ES/data/reusables/sponsors/activity-tab.md b/translations/es-ES/data/reusables/sponsors/activity-tab.md deleted file mode 100644 index 8180973481..0000000000 --- a/translations/es-ES/data/reusables/sponsors/activity-tab.md +++ /dev/null @@ -1 +0,0 @@ -1. En la barra lateral izquierda, da clic en **Actividad**. ![Pestaña de actividad](/assets/images/help/sponsors/activity-tab.png) diff --git a/translations/es-ES/data/reusables/sponsors/your-sponsors-tab.md b/translations/es-ES/data/reusables/sponsors/your-sponsors-tab.md new file mode 100644 index 0000000000..d9b34cd249 --- /dev/null +++ b/translations/es-ES/data/reusables/sponsors/your-sponsors-tab.md @@ -0,0 +1 @@ +1. En la barra lateral izquierda, da clic en **Tus patrocinadores**. ![Your sponsors tab](/assets/images/help/sponsors/your-sponsors-tab.png) diff --git a/translations/ja-JP/content/actions/learn-github-actions/contexts.md b/translations/ja-JP/content/actions/learn-github-actions/contexts.md index 120c504102..db050bb3d7 100644 --- a/translations/ja-JP/content/actions/learn-github-actions/contexts.md +++ b/translations/ja-JP/content/actions/learn-github-actions/contexts.md @@ -57,6 +57,8 @@ As part of an expression, you can access context information using one of two sy - `a-Z` または `_` で始まる。 - `a-Z` 、`0-9`、 `-`、または`_`が続く。 +If you attempt to dereference a non-existent property, it will evaluate to an empty string. + ### コンテキストを使用する場合の判断 {% data reusables.actions.using-context-or-environment-variables %} @@ -183,7 +185,7 @@ jobs: | `github.action_status` | `string` | For a composite action, the current result of the composite action. | | `github.actor` | `string` | The username of the user that initiated the workflow run. | | `github.api_url` | `string` | The URL of the {% data variables.product.prodname_dotcom %} REST API. | -| `github.base_ref` | `string` | ワークフローの実行における `base_ref` またはプルリクエストのターゲットブランチ。 このプロパティは、ワークフローの実行をトリガーするイベントが `pull_request` または `pull_request_target` のいずれかである場合にのみ使用できます。 | +| `github.base_ref` | `string` | ワークフローの実行における `base_ref` またはPull Requestのターゲットブランチ。 このプロパティは、ワークフローの実行をトリガーするイベントが `pull_request` または `pull_request_target` のいずれかである場合にのみ使用できます。 | | `github.env` | `string` | Path on the runner to the file that sets environment variables from workflow commands. This file is unique to the current step and is a different file for each step in a job. 詳しい情報については「[{% data variables.product.prodname_actions %}のワークフローコマンド](/actions/learn-github-actions/workflow-commands-for-github-actions#setting-an-environment-variable)」を参照してください。 | | `github.event` | `オブジェクト` | webhook ペイロードの完全なイベント。 このコンテキストを使用して、イベントの個々のプロパティにアクセスできます。 This object is identical to the webhook payload of the event that triggered the workflow run, and is different for each event. The webhooks for each {% data variables.product.prodname_actions %} event is linked in "[Events that trigger workflows](/articles/events-that-trigger-workflows/)." For example, for a workflow run triggered by the [`push` event](/actions/using-workflows/events-that-trigger-workflows#push), this object contains the contents of the [push webhook payload](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#push). | | `github.event_name` | `string` | ワークフローの実行をトリガーしたイベントの名前。 | @@ -195,7 +197,7 @@ jobs: {%- ifversion fpt or ghec or ghes > 3.3 or ghae-issue-5338 %} | `github.ref_name` | `string` | {% data reusables.actions.ref_name-description %} | | `github.ref_protected` | `string` | {% data reusables.actions.ref_protected-description %} | | `github.ref_type` | `string` | {% data reusables.actions.ref_type-description %} {%- endif %} -| `github.path` | `string` | Path on the runner to the file that sets system `PATH` variables from workflow commands. This file is unique to the current step and is a different file for each step in a job. For more information, see "[Workflow commands for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-commands-for-github-actions#adding-a-system-path)." | | `github.repository` | `string` | The owner and repository name. `Codertocat/Hello-World`などです。 | | `github.repository_owner` | `string` | The repository owner's name. たとえば`Codertocat`。 | | `github.repositoryUrl` | `string` | The Git URL to the repository. For example, `git://github.com/codertocat/hello-world.git`. | | `github.retention_days` | `string` | The number of days that workflow run logs and artifacts are kept. | | `github.run_id` | `string` | {% data reusables.actions.run_id_description %} | | `github.run_number` | `string` | {% data reusables.actions.run_number_description %} +| `github.path` | `string` | Path on the runner to the file that sets system `PATH` variables from workflow commands. This file is unique to the current step and is a different file for each step in a job. 詳しい情報については「[{% data variables.product.prodname_actions %}のワークフローコマンド](/actions/learn-github-actions/workflow-commands-for-github-actions#adding-a-system-path)」を参照してください。 | | `github.repository` | `string` | The owner and repository name. `Codertocat/Hello-World`などです。 | | `github.repository_owner` | `string` | The repository owner's name. たとえば`Codertocat`。 | | `github.repositoryUrl` | `string` | The Git URL to the repository. For example, `git://github.com/codertocat/hello-world.git`. | | `github.retention_days` | `string` | The number of days that workflow run logs and artifacts are kept. | | `github.run_id` | `string` | {% data reusables.actions.run_id_description %} | | `github.run_number` | `string` | {% data reusables.actions.run_number_description %} {%- ifversion fpt or ghec or ghes > 3.5 or ghae-issue-4722 %} | `github.run_attempt` | `string` | A unique number for each attempt of a particular workflow run in a repository. This number begins at 1 for the workflow run's first attempt, and increments with each re-run. | {%- endif %} @@ -505,7 +507,7 @@ jobs: ## `secrets` context -The `secrets` context contains the names and values of secrets that are available to a workflow run. The `secrets` context is not available for composite actions. For more information about secrets, see "[Encrypted secrets](/actions/security-guides/encrypted-secrets)." +The `secrets` context contains the names and values of secrets that are available to a workflow run. The `secrets` context is not available for composite actions. シークレットに関する詳しい情報については「[暗号化されたシークレット](/actions/security-guides/encrypted-secrets)」を参照してください。 `GITHUB_TOKEN` is a secret that is automatically created for every workflow run, and is always included in the `secrets` context. 詳しい情報については「[自動トークン認証](/actions/security-guides/automatic-token-authentication)」を参照してください。 @@ -633,7 +635,7 @@ jobs: ## `needs`コンテキスト -`needs`コンテキストは、現在のジョブの依存関係として定義されたすべてのジョブからの出力を含みます。 For more information on defining job dependencies, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idneeds)." +`needs`コンテキストは、現在のジョブの依存関係として定義されたすべてのジョブからの出力を含みます。 ジョブの依存関係の定義に関する詳しい情報については「[{% data variables.product.prodname_actions %}のワークフロー構文](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idneeds)」を参照してください。 | プロパティ名 | 種類 | 説明 | | -------------------------------------------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | diff --git a/translations/ja-JP/content/actions/using-workflows/events-that-trigger-workflows.md b/translations/ja-JP/content/actions/using-workflows/events-that-trigger-workflows.md index 973d0d0061..bd26e07b04 100644 --- a/translations/ja-JP/content/actions/using-workflows/events-that-trigger-workflows.md +++ b/translations/ja-JP/content/actions/using-workflows/events-that-trigger-workflows.md @@ -1157,7 +1157,7 @@ jobs: [crontab guru](https://crontab.guru/) を使うと、クーロン構文の生成および実行時間の確認に役立ちます。 また、クーロン構文の生成を支援するため、[crontab guru のサンプル](https://crontab.guru/examples.html)リストもあります。 -ワークフロー内のクーロン構文を最後に修正したユーザには、スケジュールされたワークフローの通知が送られます。 For more information, see "[Notifications for workflow runs](/actions/guides/about-continuous-integration#notifications-for-workflow-runs)." +ワークフロー内のクーロン構文を最後に修正したユーザには、スケジュールされたワークフローの通知が送られます。 For more information, see "[Notifications for workflow runs](/actions/monitoring-and-troubleshooting-workflows/notifications-for-workflow-runs)." ### `ステータス` diff --git a/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md b/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md index 8e650bea7b..8aed8da019 100644 --- a/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md +++ b/translations/ja-JP/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md @@ -24,7 +24,7 @@ You can choose to join an organization owned by your enterprise as a member or a {% warning %} -**Warning**: If an organization uses SCIM to provision users, joining the organization this way could have unintended consequences. For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +**Warning**: If an organization uses SCIM to provision users, joining the organization this way could have unintended consequences. 詳しい情報については、「[OrganizationのSCIMについて](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)」を参照してください。 {% endwarning %} diff --git a/translations/ja-JP/content/code-security/supply-chain-security/end-to-end-supply-chain/securing-accounts.md b/translations/ja-JP/content/code-security/supply-chain-security/end-to-end-supply-chain/securing-accounts.md index 1fe6ab42c4..fd76bde8ae 100644 --- a/translations/ja-JP/content/code-security/supply-chain-security/end-to-end-supply-chain/securing-accounts.md +++ b/translations/ja-JP/content/code-security/supply-chain-security/end-to-end-supply-chain/securing-accounts.md @@ -35,7 +35,7 @@ You can configure SAML authentication for an enterprise or organization account. After you configure SAML authentication, when members request access to your resources, they'll be directed to your SSO flow to ensure they are still recognized by your IdP. If they are unrecognized, their request is declined. -Some IdPs support a protocol called SCIM, which can automatically provision or deprovision access on {% data variables.product.product_name %} when you make changes on your IdP. With SCIM, you can simplify administration as your team grows, and you can quickly revoke access to accounts. SCIM is available for individual organizations on {% data variables.product.product_name %}, or for enterprises that use {% data variables.product.prodname_emus %}. For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +Some IdPs support a protocol called SCIM, which can automatically provision or deprovision access on {% data variables.product.product_name %} when you make changes on your IdP. With SCIM, you can simplify administration as your team grows, and you can quickly revoke access to accounts. SCIM is available for individual organizations on {% data variables.product.product_name %}, or for enterprises that use {% data variables.product.prodname_emus %}. 詳しい情報については、「[OrganizationのSCIMについて](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)」を参照してください。 {% endif %} {% ifversion ghes %} diff --git a/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md b/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md index 6cbb18c5af..409595d281 100644 --- a/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md +++ b/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md @@ -54,7 +54,7 @@ For public repositories, only public repositories that depend on it or on packag You can use the dependency graph to: -- Explore the repositories your code depends on{% ifversion fpt or ghec %}, and those that depend on it{% endif %}. For more information, see "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)." {% ifversion fpt or ghec %} +- Explore the repositories your code depends on{% ifversion fpt or ghec %}, and those that depend on it{% endif %}. For more information, see "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)." {% ifversion ghec %} - View a summary of the dependencies used in your organization's repositories in a single dashboard. For more information, see "[Viewing insights for your organization](/articles/viewing-insights-for-your-organization#viewing-organization-dependency-insights)."{% endif %} - View and update vulnerable dependencies for your repository. For more information, see "[About {% data variables.product.prodname_dependabot_alerts %}](/code-security/supply-chain-security/about-alerts-for-vulnerable-dependencies)."{% ifversion fpt or ghes > 3.1 or ghec %} - See information about vulnerable dependencies in pull requests. For more information, see "[Reviewing dependency changes in a pull request](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-dependency-changes-in-a-pull-request)."{% endif %} @@ -102,7 +102,6 @@ The recommended formats explicitly define which versions are used for all direct ## Further reading - "[Dependency graph](https://en.wikipedia.org/wiki/Dependency_graph)" on Wikipedia -- "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)"{% ifversion fpt or ghec %} -- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %} +- "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)" - "[Viewing {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)" - "[Troubleshooting the detection of vulnerable dependencies](/github/managing-security-vulnerabilities/troubleshooting-the-detection-of-vulnerable-dependencies)" diff --git a/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md b/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md index e4103e17ef..be5882befd 100644 --- a/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md +++ b/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md @@ -37,6 +37,6 @@ shortTitle: Configure dependency graph ## 参考リンク -{% ifversion fpt or ghec %}- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %} +{% ifversion ghec %}- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %} - "[Viewing {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)" - 「[脆弱性のある依存関係の検出のトラブルシューティング](/github/managing-security-vulnerabilities/troubleshooting-the-detection-of-vulnerable-dependencies)」 diff --git a/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md b/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md index 29e02f3520..a2947459f6 100644 --- a/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md +++ b/translations/ja-JP/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md @@ -106,7 +106,7 @@ You may notice some repositories have a "Used by" section in the sidebar of the ## 参考リンク - [依存関係グラフについて](/github/visualizing-repository-data-with-graphs/about-the-dependency-graph) -- "[Viewing {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)"{% ifversion fpt or ghec %} -- [Organization のインサイトを表示する](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization) +- 「[脆弱性のある依存関係に対する{% data variables.product.prodname_dependabot_alerts %}の表示](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)」{% ifversion ghec %} +- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %}{% ifversion fpt or ghec %} - [{% data variables.product.prodname_dotcom %}によるデータの利用と保護の方法の理解](/get-started/privacy-on-github) {% endif %} diff --git a/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md b/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md index 5ffeedc5a1..8c26e799b2 100644 --- a/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md +++ b/translations/ja-JP/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md @@ -1,12 +1,10 @@ --- title: Organization のインサイトを表示する intro: Organization のインサイトは、Organization のアクティビティ、コントリビューション、および依存関係についてのデータを提供します。 -product: '{% data reusables.gated-features.org-insights %}' redirect_from: - /articles/viewing-insights-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/viewing-insights-for-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations @@ -15,6 +13,8 @@ shortTitle: Organizationインサイトの表示 permissions: Organization members can view organization insights. --- +## Organizationインサイトについて + Organization のメンバーが、コードについてコラボレートや作業をするため {% data variables.product.product_name %} をどう使っているかについて、より深く理解するために、Organization activity insights を使用できます。 dependency insights は、Organization のオープンソース利用について追跡、レポート、および行動するため役立ちます。 {% note %} diff --git a/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md b/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md index 87915ce49b..0828aeca48 100644 --- a/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md +++ b/translations/ja-JP/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md @@ -24,7 +24,7 @@ Organizationに対する SAMLシングルサインオンを有効にすると、 {% data reusables.saml.about-linked-identities %} -利用できる場合には、このエントリにはSCIMデータが含まれます。 For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +利用できる場合には、このエントリにはSCIMデータが含まれます。 詳しい情報については、「[OrganizationのSCIMについて](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)」を参照してください。 {% warning %} diff --git a/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md b/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md index 07d6d1db33..c476b6112c 100644 --- a/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md +++ b/translations/ja-JP/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md @@ -29,7 +29,7 @@ Organozationのオーナーは、コラボレータを招待する機能を制 {% endif %} {% ifversion ghes %} -リポジトリに外部コラボレータとして誰かを追加するには、その人は{% data variables.product.product_location %}上に個人アカウントを持っていなければなりません。 EnterpriseがSAMLやLDAPのような外部の認証システムを使っているなら、アカウントを作成するためには追加したい人はそのシステムを通じてサインインしなければなりません。 If the person does not have access to the authentication system and built-in authentication is enabled for your enterprise, a site administrator can create an account for the person. For more information, see "[Configuring built-in authentication](/admin/identity-and-access-management/using-built-in-authentication/configuring-built-in-authentication)." +リポジトリに外部コラボレータとして誰かを追加するには、その人は{% data variables.product.product_location %}上に個人アカウントを持っていなければなりません。 EnterpriseがSAMLやLDAPのような外部の認証システムを使っているなら、アカウントを作成するためには追加したい人はそのシステムを通じてサインインしなければなりません。 その人がその認証システムにアクセスできず、Enterpriseではビルトイン認証が有効化されているなら、サイト管理者がその人にアカウントを作成できます。 詳しい情報については、「[ビルトイン認証の設定](/admin/identity-and-access-management/using-built-in-authentication/configuring-built-in-authentication)」を参照してください。 {% endif %} {% ifversion not ghae %} diff --git a/translations/ja-JP/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md b/translations/ja-JP/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md index 44520714ea..da693d15b5 100644 --- a/translations/ja-JP/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md +++ b/translations/ja-JP/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md @@ -23,7 +23,7 @@ Organization がユーザ単位の有料プランである場合、新しいメ Organization がメンバーに 2 要素認証を使うことを要求している場合、招待するユーザは招待を受ける前に 2 要素認証を有効化する必要があります。 詳細については、「[Organization で 2 要素認証を要求する](/organizations/keeping-your-organization-secure/requiring-two-factor-authentication-in-your-organization)」と「[2要素認証 (2FA) でアカウントをセキュアにする](/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa)」を参照してください。 -{% ifversion fpt %}{% data variables.product.prodname_ghe_cloud %}を使用するOrganization{% else %}あなた{% endif %}はSCIMを実装して、アイデンティティプロバイダ(IdP)を通じて{% data variables.product.prodname_dotcom_the_website %}へのメンバーのアクセスを追加、管理、削除できます。 For more information, see "[About SCIM for organizations](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +{% ifversion fpt %}{% data variables.product.prodname_ghe_cloud %}を使用するOrganization{% else %}あなた{% endif %}はSCIMを実装して、アイデンティティプロバイダ(IdP)を通じて{% data variables.product.prodname_dotcom_the_website %}へのメンバーのアクセスを追加、管理、削除できます。 詳しい情報については{% ifversion fpt %}、{% data variables.product.prodname_ghe_cloud %}ドキュメンテーションの{% else %}、{% endif %}「[OrganizatinのSCIMについて](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)を参照してください。 ## Organizationに参加するようユーザを招待する diff --git a/translations/ja-JP/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md b/translations/ja-JP/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md index 4591a3266d..59c57beeb9 100644 --- a/translations/ja-JP/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md +++ b/translations/ja-JP/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md @@ -1,12 +1,10 @@ --- title: Organization dependency insights の可視性を変更する intro: Organization のメンバーが、Organization dependency insights を表示できるように設定できます。また、Organization のオーナーにのみ表示できるようにも設定できます。 -product: '{% data reusables.gated-features.org-insights %}' redirect_from: - /articles/changing-the-visibility-of-your-organizations-dependency-insights - /github/setting-up-and-managing-organizations-and-teams/changing-the-visibility-of-your-organizations-dependency-insights versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/ja-JP/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md b/translations/ja-JP/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md index 0eb4c2031a..7f2a460d2a 100644 --- a/translations/ja-JP/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md +++ b/translations/ja-JP/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md @@ -103,8 +103,9 @@ Organizationでの{% data variables.product.prodname_github_app %}マネージ | プロジェクトボードの作成(「[Organizationのプロジェクトボード権限](/articles/project-board-permissions-for-an-organization)」参照) | **X** | **X** | **X** | | **X** | | Organization の全メンバーおよび Team の表示 | **X** | **X** | **X** | | **X** | | 参照可能なチームへの @メンション | **X** | **X** | **X** | | **X** | -| *チームメンテナ*に指定できる | **X** | **X** | **X** | | **X** | -| Organizationのインサイトの表示(「[Organizationのインサイトの表示](/articles/viewing-insights-for-your-organization)」参照) | **X** | **X** | **X** | | **X** | +| *チームメンテナ*に指定できる | **X** | **X** | **X** | | **X** |{% ifversion ghec %} +| Organizationのインサイトの表示(「[Organizationのインサイトの表示](/articles/viewing-insights-for-your-organization)」参照) | **X** | **X** | **X** | | **X** +{% endif %} | パブリックなTeamディスカッションの表示と**すべてのTeam**へのポスト(「[Teamディスカッションについて](/organizations/collaborating-with-your-team/about-team-discussions)」参照) | **X** | **X** | **X** | | **X** | | プライベートなTeamディスカッションの表示と**すべてのTeam**へのポスト(「[Teamディスカッションについて](/organizations/collaborating-with-your-team/about-team-discussions)」参照) | **X** | | | | | | **すべてのTeam**のTeamディスカッションの編集及び削除(「[問題を起こすコメントの管理](/communities/moderating-comments-and-conversations/managing-disruptive-comments)」参照) | **X** | | | | | @@ -112,8 +113,9 @@ Organizationでの{% data variables.product.prodname_github_app %}マネージ | 書き込み可能なコミット、Pull Request、Issue についてコメントを非表示にする (詳細は「[問題を起こすコメントの管理](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)」を参照) | **X** | **X** | **X** | | **X** | | _すべての_コミット、Pull Request、Issue についてコメントを非表示にする (詳細は「[問題を起こすコメントの管理](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)」を参照) | **X** | | **X** | | **X** | | メンバーではないコントリビューターのブロック及びブロック解除(「[Organizationからのユーザのブロック](/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization)」参照) | **X** | | **X** | | | -| パブリックリポジトリでの特定ユーザの操作の制限(「[Organizationでの操作の制限](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization)」参照) | **X** | | **X** | | | -| Organizationの依存関係インサイトの表示の管理(「[Organizationの依存関係インサイトの可視性の変更](/articles/changing-the-visibility-of-your-organizations-dependency-insights)」参照) | **X** | | | | | +| パブリックリポジトリでの特定ユーザの操作の制限(「[Organizationでの操作の制限](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization)」参照) | **X** | | **X** | | |{% ifversion ghec %} +| Organizationの依存関係インサイトの表示の管理(「[Organizationの依存関係インサイトの可視性の変更](/articles/changing-the-visibility-of-your-organizations-dependency-insights)」参照) | **X** | | | | +{% endif %} | **すべてのTeam**でTeamプロフィール画像を設定([Teamのプロフィール画像の設定](/articles/setting-your-team-s-profile-picture)」参照) | **X** | | | | | | アカウントのスポンサーとOrganizationのスポンサーシップの管理(「[オープンソースコントリビューターのスポンサー](/sponsors/sponsoring-open-source-contributors)」参照) | **X** | | | **X** | **X** | | スポンサーを受けたアカウントからのメール更新の管理(「[Organizationがスポンサーしているアカウントからの更新の管理](/organizations/managing-organization-settings/managing-updates-from-accounts-your-organization-sponsors)」参照) | **X** | | | | | diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md index 6ac7aebc10..8483bb41ab 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md @@ -46,7 +46,7 @@ Organizationへのアクセスにメンバーが初めてSAML SSOを使うとき {% data reusables.saml.saml-supported-idps %} -一部の IdPは、SCIM を介した {% data variables.product.prodname_dotcom %} Organization へのプロビジョニングアクセスをサポートしています。 For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +一部の IdPは、SCIM を介した {% data variables.product.prodname_dotcom %} Organization へのプロビジョニングアクセスをサポートしています。 詳しい情報については、「[OrganizationのSCIMについて](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)」を参照してください。 {% data reusables.scim.enterprise-account-scim %} @@ -56,7 +56,7 @@ SAML SSO を有効化後、Organization に新しいメンバーを追加する 新しいユーザを、Organization のオーナーから招待せずにプロビジョニングするには、`https://github.com/orgs/ORGANIZATION/sso/sign_up` の URL の _ORGANIZATION_ をあなたの Organization 名に置き換えてアクセスします。 たとえば、あなたの IdP にアクセスできる人なら誰でも、IdP のダッシュボードにあるリンクをクリックして、あなたの {% data variables.product.prodname_dotcom %} Organization に参加できるよう、IdP を設定できます。 -IdP が SCIM をサポートしている場合、{% data variables.product.prodname_dotcom %} は、IdP でアクセス権限が付与されたとき Organization に参加するよう自動的にメンバーを招待できます。 SAML IdP での メンバーの {% data variables.product.prodname_dotcom %} Organization へのアクセス権限を削除すると、そのメンバーは {% data variables.product.prodname_dotcom %} Organization から自動的に削除されます。 For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +IdP が SCIM をサポートしている場合、{% data variables.product.prodname_dotcom %} は、IdP でアクセス権限が付与されたとき Organization に参加するよう自動的にメンバーを招待できます。 SAML IdP での メンバーの {% data variables.product.prodname_dotcom %} Organization へのアクセス権限を削除すると、そのメンバーは {% data variables.product.prodname_dotcom %} Organization から自動的に削除されます。 詳しい情報については、「[OrganizationのSCIMについて](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)」を参照してください。 {% data reusables.organizations.team-synchronization %} @@ -64,6 +64,6 @@ IdP が SCIM をサポートしている場合、{% data variables.product.prodn ## 参考リンク -- "[SAML configuration reference](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)" +- 「[SAML設定のリファレンス](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)」 - [2要素認証とSAMLシングルサインオンについて](/articles/about-two-factor-authentication-and-saml-single-sign-on) - [SAML シングルサインオンでの認証について](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on) diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations.md index cdeb6c2074..b913025d87 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations.md @@ -1,5 +1,5 @@ --- -title: About SCIM for organizations +title: OrganizationのSCIMについて intro: System for Cross-domain Identity Management (SCIM) を使うと、管理者はユーザの識別情報のシステム間での交換を自動化できます。 redirect_from: - /articles/about-scim @@ -12,30 +12,30 @@ topics: - Teams --- -## About SCIM for organizations +## OrganizationのSCIMについて -If your organization uses [SAML SSO](/articles/about-identity-and-access-management-with-saml-single-sign-on), you can implement SCIM to add, manage, and remove organization members' access to {% data variables.product.product_name %}. たとえば、管理者は Organization のメンバーのデプロビジョニングに SCIM を使い、自動的にメンバーを Organization から削除できます。 +Organizationが[SAML SSO](/articles/about-identity-and-access-management-with-saml-single-sign-on)を使っているなら、Organizationのメンバーの{% data variables.product.product_name %}へのアクセスの追加、管理、削除のためのSCIMを実装できます。 たとえば、管理者は Organization のメンバーのデプロビジョニングに SCIM を使い、自動的にメンバーを Organization から削除できます。 {% data reusables.saml.ghec-only %} {% data reusables.scim.enterprise-account-scim %} -SCIM を実装せずに SAML SSO を使った場合、自動のプロビジョニング解除は行われません。 Organization のメンバーのアクセスが ldP から削除された後、セッションの有効期限が切れても、そのメンバーは Organization から自動的には削除されません。 認証済みのトークンにより、セッションが期限切れになった後も Organization へのアクセスが許可されます。 If SCIM is not used, to fully remove a member's access, an organization owner must remove the member's access in the IdP and manually remove the member from the organization on {% data variables.product.prodname_dotcom %}. +SCIM を実装せずに SAML SSO を使った場合、自動のプロビジョニング解除は行われません。 Organization のメンバーのアクセスが ldP から削除された後、セッションの有効期限が切れても、そのメンバーは Organization から自動的には削除されません。 認証済みのトークンにより、セッションが期限切れになった後も Organization へのアクセスが許可されます。 SCIMが疲れていないなら、メンバーのアクセスを完全に削除するためには、OrganizationのオーナーはメンバーのアクセスをIdPで削除し、手動で{% data variables.product.prodname_dotcom %}上のOrganizationからそのメンバーを削除しなければなりません。 {% data reusables.scim.changes-should-come-from-idp %} ## サポートされているアイデンティティプロバイダ -These identity providers (IdPs) are compatible with the {% data variables.product.product_name %} SCIM API for organizations. 詳しい情報については{% ifversion ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} APIドキュメンテーション中の[SCIM](/rest/scim)を参照してください。 +以下のアイデンティティプロバイダ(IdP)は、Organizationのための{% data variables.product.product_name %} SCIM APIと互換性があります。 詳しい情報については{% ifversion ghec %}{% data variables.product.prodname_dotcom %}{% else %}{% data variables.product.product_name %}{% endif %} APIドキュメンテーション中の[SCIM](/rest/scim)を参照してください。 - Azure AD - Okta - OneLogin -## About SCIM configuration for organizations +## OrganizationのためのSCIMの設定について {% data reusables.scim.dedicated-configuration-account %} -Before you authorize the {% data variables.product.prodname_oauth_app %}, you must have an active SAML session. 詳しい情報については「[SAML シングルサインオンでの認証について](/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on#about-oauth-apps-github-apps-and-saml-sso)」を参照してください。 +{% data variables.product.prodname_oauth_app %}を認可する前に、アクティブなSAMLセッションを持っていなければなりません。 詳しい情報については「[SAML シングルサインオンでの認証について](/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on#about-oauth-apps-github-apps-and-saml-sso)」を参照してください。 {% note %} diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md index fe702c15dd..c742d89747 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md @@ -18,7 +18,7 @@ shortTitle: OktaでSAMLとSCIMを設定する {% data reusables.saml.ghec-only %} -SAML SSO は、リポジトリや Issue、Pull Requestといった Organization のリソースに対するアクセスを制御し、保護します。 SCIMは、Oktaで変更があった場合に{% data variables.product.product_location %}上のOrganizationへのメンバーアクセスを自動的に追加、管理、削除します。 For more information, see "[About identity and access management with SAML single sign-on](/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on)" and "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +SAML SSO は、リポジトリや Issue、Pull Requestといった Organization のリソースに対するアクセスを制御し、保護します。 SCIMは、Oktaで変更があった場合に{% data variables.product.product_location %}上のOrganizationへのメンバーアクセスを自動的に追加、管理、削除します。 詳しい情報については、「[SAML シングルサインオンを使うアイデンティティおよびアクセス管理について](/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on)」と「[OrganizationのSCIM について](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)」を参照してください。 SCIM を有効にすると、Okta で {% data variables.product.prodname_ghe_cloud %} アプリケーションを割り当てる任意のユーザが次のプロビジョニング機能を使えるようになります。 @@ -41,9 +41,9 @@ SCIM を有効にすると、Okta で {% data variables.product.prodname_ghe_clo {% data reusables.scim.dedicated-configuration-account %} -1. Sign into {% data variables.product.prodname_dotcom_the_website %} using an account that is an organization owner and is ideally used only for SCIM configuration. -1. To create an active SAML session for your organization, navigate to `https://github.com/orgs/ORGANIZATION-NAME/sso`. 詳しい情報については「[SAML シングルサインオンでの認証について](/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on#about-oauth-apps-github-apps-and-saml-sso)」を参照してください。 -1. Navigate to Okta. +1. Organizationのオーナーであり、理想的にはSCIMの設定だけに使われるアカウントを使って{% data variables.product.prodname_dotcom_the_website %}にサインインしてください。 +1. OrganizationでアクティブなSAMLセッションを作成するには、`https://github.com/orgs/ORGANIZATION-NAME/sso`にアクセスしてください。 詳しい情報については「[SAML シングルサインオンでの認証について](/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on#about-oauth-apps-github-apps-and-saml-sso)」を参照してください。 +1. Oktaにアクセスしてください。 {% data reusables.saml.okta-dashboard-click-applications %} {% data reusables.saml.okta-applications-click-ghec-application-label %} {% data reusables.saml.okta-provisioning-tab %} diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md index f7b03224c1..994a064508 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md @@ -1,6 +1,6 @@ --- title: アイデンティティプロバイダを Organization に接続する -intro: 'To use SAML single sign-on and SCIM, you must connect your identity provider (IdP) to your organization on {% data variables.product.product_name %}.' +intro: 'SAML シングルサインオンおよび SCIM を使うには、あなたのアイデンティティプロバイダ(IdP)を、{% data variables.product.product_name %}上のあなたのOrganizationに接続する必要があります。' redirect_from: - /articles/connecting-your-identity-provider-to-your-organization - /github/setting-up-and-managing-organizations-and-teams/connecting-your-identity-provider-to-your-organization @@ -13,7 +13,7 @@ topics: shortTitle: IdPの接続 --- -## About connection of your IdP to your organization +## IdPのOrganizationへの接続について {% data variables.product.product_name %} OrganizationでSAML SSOを有効化すると、アイデンティティプロバイダ(IdP)をOrganizationに接続することになります。 詳細は「[Organization での SAML シングルサインオンの有効化とテスト](/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization)」を参照してください。 @@ -29,7 +29,7 @@ IdPのSAML及びSCIMの実装の詳細は、IdPのドキュメンテーション {% note %} -**メモ:** {% data variables.product.product_name %} がサポートする SCIM アイデンティティプロバイダは Azure AD、Okta、OneLogin です。 For more information about SCIM, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +**メモ:** {% data variables.product.product_name %} がサポートする SCIM アイデンティティプロバイダは Azure AD、Okta、OneLogin です。 SCIMに関する詳しい情報については「[OrganizationのSCIMについて](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)」を参照してください。 {% data reusables.scim.enterprise-account-scim %} @@ -37,4 +37,4 @@ IdPのSAML及びSCIMの実装の詳細は、IdPのドキュメンテーション ## SAMLのメタデータ -For more information about SAML metadata for your organization, see "[SAML configuration reference](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)." +OrganizationのSAMLメタデータに関する詳しい情報については「[SAML設定のリファレンス](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)」を参照してください。 diff --git a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md index 572087c374..3dd09d853d 100644 --- a/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md +++ b/translations/ja-JP/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md @@ -58,4 +58,4 @@ OrganizationでSAML SSOを施行する前に、Organizationの準備ができて ## 参考リンク - [SAML シングルサインオンを使うアイデンティティおよびアクセス管理について](/articles/about-identity-and-access-management-with-saml-single-sign-on) -- "[SAML configuration reference](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)" +- 「[SAML設定のリファレンス](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)」 diff --git a/translations/ja-JP/content/rest/actions/cache.md b/translations/ja-JP/content/rest/actions/cache.md index c9d3229a5a..e50798e8ba 100644 --- a/translations/ja-JP/content/rest/actions/cache.md +++ b/translations/ja-JP/content/rest/actions/cache.md @@ -1,6 +1,6 @@ --- title: キャッシュ -intro: 'The Cache API allows you to query and manage the {% data variables.product.prodname_actions %} cache for repositories.' +intro: 'キャッシュAPIを使うと、リポジトリの{% data variables.product.prodname_actions %}キャッシュに対するクエリと管理を行えます。' topics: - API versions: @@ -8,4 +8,4 @@ versions: ghec: '*' --- -The cache API allows you to query and manage the {% data variables.product.prodname_actions %} cache for repositories. 詳しい情報については、「[ワークフローを高速化するための依存関係のキャッシュ](/actions/advanced-guides/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy)」を参照してください。 +キャッシュAPIを使うと、リポジトリの{% data variables.product.prodname_actions %}キャッシュに対するクエリと管理を行えます。 詳しい情報については、「[ワークフローを高速化するための依存関係のキャッシュ](/actions/advanced-guides/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy)」を参照してください。 diff --git a/translations/ja-JP/content/rest/actions/index.md b/translations/ja-JP/content/rest/actions/index.md index adf631af47..546c192d70 100644 --- a/translations/ja-JP/content/rest/actions/index.md +++ b/translations/ja-JP/content/rest/actions/index.md @@ -24,4 +24,4 @@ children: - /workflows --- -{% data variables.product.prodname_actions %} API では、REST API を使用して {% data variables.product.prodname_actions %} を管理できます。 {% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %} require the permissions mentioned in each endpoint. 詳しい情報については、「[{% data variables.product.prodname_actions %} のドキュメント](/actions)」を参照してください。 +{% data variables.product.prodname_actions %} API では、REST API を使用して {% data variables.product.prodname_actions %} を管理できます。 {% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %} には、各エンドポイントで指定されている権限が必要です。 詳しい情報については、「[{% data variables.product.prodname_actions %} のドキュメント](/actions)」を参照してください。 diff --git a/translations/ja-JP/content/rest/actions/permissions.md b/translations/ja-JP/content/rest/actions/permissions.md index 50b3ea0a07..0e165558bd 100644 --- a/translations/ja-JP/content/rest/actions/permissions.md +++ b/translations/ja-JP/content/rest/actions/permissions.md @@ -1,6 +1,6 @@ --- title: 権限 -intro: 'The Permissions API allows you to set permissions for what enterprises, organizations, and repositories are allowed to run {% data variables.product.prodname_actions %}, and what actions{% if actions-workflow-policy %} and reusable workflows{% endif %} are allowed to run.' +intro: 'Permissions API では、どのEnterprise、組織、リポジトリが {% data variables.product.prodname_actions %} を実行できるか、どのアクション{% if actions-workflow-policy %}と再利用可能なワークフロー{% endif %}を実行できるかについて権限を設定できます。' topics: - API versions: @@ -12,4 +12,4 @@ versions: ## 権限 -The Permissions API allows you to set permissions for what enterprises, organizations, and repositories are allowed to run {% data variables.product.prodname_actions %}, and what actions{% if actions-workflow-policy %} and reusable workflows{% endif %} are allowed to run.{% ifversion fpt or ghec or ghes %} For more information, see "[Usage limits, billing, and administration](/actions/reference/usage-limits-billing-and-administration#disabling-or-limiting-github-actions-for-your-repository-or-organization)."{% endif %} +Permissions API では、どのEnterprise、組織、リポジトリが {% data variables.product.prodname_actions %} を実行できるか、どのアクション{% if actions-workflow-policy %}と再利用可能なワークフロー{% endif %}を実行できるかについて権限を設定できます。{% ifversion fpt or ghec or ghes %}詳しい情報については[利用制限、支払い、管理](/actions/reference/usage-limits-billing-and-administration#disabling-or-limiting-github-actions-for-your-repository-or-organization)」を参照してください。{% endif %} diff --git a/translations/ja-JP/content/rest/actions/secrets.md b/translations/ja-JP/content/rest/actions/secrets.md index cc0cc01ca8..77563f5f1f 100644 --- a/translations/ja-JP/content/rest/actions/secrets.md +++ b/translations/ja-JP/content/rest/actions/secrets.md @@ -12,4 +12,4 @@ versions: {% data reusables.actions.about-secrets %} 詳しい情報については、「[暗号化されたシークレットの作成と利用](/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)」を参照してください。 -{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %} must have the `secrets` permission to use this API. 認証されたユーザは、シークレットを作成、更新、または読み取るために、リポジトリへのコラボレータアクセス権を持っている必要があります。 +{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %}がこのAPIを使うためには`secrets`権限を持っていなければなりません。 認証されたユーザは、シークレットを作成、更新、または読み取るために、リポジトリへのコラボレータアクセス権を持っている必要があります。 diff --git a/translations/ja-JP/content/rest/actions/self-hosted-runner-groups.md b/translations/ja-JP/content/rest/actions/self-hosted-runner-groups.md index 31071f6c56..4a402f7dc5 100644 --- a/translations/ja-JP/content/rest/actions/self-hosted-runner-groups.md +++ b/translations/ja-JP/content/rest/actions/self-hosted-runner-groups.md @@ -15,4 +15,4 @@ versions: セルフホストランナーグループ API を使用すると、セルフホストランナーのグループを管理できます。 詳しい情報については、「[グループを使用したセルフホストランナーへのアクセスを管理する](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups)」を参照してください。 -{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %} must have the `administration` permission for repositories or the `organization_self_hosted_runners` permission for organizations. Authenticated users must have admin access to repositories or organizations, or the `manage_runners:enterprise` scope for enterprises to use this API. +{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %}は、リポジトリに対する`administration`権限もしくはOrganizationに対する`organization_self_hosted_runners`権限を持っていなければなりません。 認証されたユーザがこのAPIを使うためには、リポジトリもしくはOrganizationに対する管理アクセス、あるいはEnterpriseに対する`manage_runners:enterprise`スコープを持っていなければなりません。 diff --git a/translations/ja-JP/content/rest/actions/self-hosted-runners.md b/translations/ja-JP/content/rest/actions/self-hosted-runners.md index c4d0efe45c..12b1dd928e 100644 --- a/translations/ja-JP/content/rest/actions/self-hosted-runners.md +++ b/translations/ja-JP/content/rest/actions/self-hosted-runners.md @@ -15,4 +15,4 @@ versions: セルフホストランナー API では、自分のホストランナーの登録、表示、削除ができます。 {% data reusables.actions.about-self-hosted-runners %} 詳しい情報については「[自分のランナーのホスト](/actions/hosting-your-own-runners)」を参照してください。 -{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %} must have the `administration` permission for repositories the `organization_self_hosted_runners` permission for organizations. Authenticated users must have admin access to repositories or organizations, or the `manage_runners:enterprise` scope for enterprises to use this API. +{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %}は、リポジトリに対する`administration`権限もしくはOrganizationに対する`organization_self_hosted_runners`権限を持っていなければなりません。 認証されたユーザがこのAPIを使うためには、リポジトリもしくはOrganizationに対する管理アクセス、あるいはEnterpriseに対する`manage_runners:enterprise`スコープを持っていなければなりません。 diff --git a/translations/ja-JP/content/rest/actions/workflow-runs.md b/translations/ja-JP/content/rest/actions/workflow-runs.md index 3fca12a420..3427dd2c61 100644 --- a/translations/ja-JP/content/rest/actions/workflow-runs.md +++ b/translations/ja-JP/content/rest/actions/workflow-runs.md @@ -1,6 +1,6 @@ --- -title: Workflow runs -intro: 'The Workflow Runs API allows you to view, re-run, cancel, and view logs for workflow runs.' +title: ワークフローの実行 +intro: Workflow Runs APIを使うと、ワークフローの実行の表示、再実行、キャンセル、ログの表示が行えます。 topics: - API versions: @@ -10,6 +10,6 @@ versions: ghec: '*' --- -{% data reusables.actions.about-workflow-runs %} For more information, see "[Managing a workflow run](/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run)." +{% data reusables.actions.about-workflow-runs %} 詳しい情報については「[ワークフローの実行の管理](/actions/automating-your-workflow-with-github-actions/managing-a-workflow-run)」を参照してください。 -{% data reusables.actions.actions-authentication %} {% data reusables.actions.actions-app-actions-permissions-api %} \ No newline at end of file +{% data reusables.actions.actions-authentication %} {% data reusables.actions.actions-app-actions-permissions-api %} diff --git a/translations/ja-JP/content/rest/activity/feeds.md b/translations/ja-JP/content/rest/activity/feeds.md index 530855d5b7..bc75b862b5 100644 --- a/translations/ja-JP/content/rest/activity/feeds.md +++ b/translations/ja-JP/content/rest/activity/feeds.md @@ -11,9 +11,9 @@ topics: miniTocMaxHeadingLevel: 3 --- -### Example of getting an Atom feed +### Atomフィードの取得例 -To get a feed in Atom format, you must specify the `application/atom+xml` type in the `Accept` header. For example, to get the Atom feed for GitHub security advisories: +フィードをAtom形式で取得するには、`Accept`ヘッダ中で`application/atom+xml`タイプを指定しなければなりません。 以下は、GitHubセキュリティアドバイザリに対するAtomフィードの取得例です。 curl -H "Accept: application/atom+xml" https://github.com/security-advisories diff --git a/translations/ja-JP/content/rest/activity/notifications.md b/translations/ja-JP/content/rest/activity/notifications.md index 18231b4af8..ff27deb9fa 100644 --- a/translations/ja-JP/content/rest/activity/notifications.md +++ b/translations/ja-JP/content/rest/activity/notifications.md @@ -53,12 +53,12 @@ $ -H "If-Modified-Since: Thu, 25 Oct 2012 15:16:27 GMT" | 理由名 | 説明 | | ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `assign` | Issue に割り当てられた。 | -| `作者` | スレッドを作成した。 | -| `コメント` | スレッドにコメントした。 | -| `ci_activity` | A {% data variables.product.prodname_actions %} workflow run that you triggered was completed. | -| `招待` | リポジトリへのコントリビューションへの招待を承諾した。 | +| `author` | スレッドを作成した。 | +| `comment` | スレッドにコメントした。 | +| `ci_activity` | トリガーした{% data variables.product.prodname_actions %} ワークフローの実行が完了した。 | +| `invitation` | リポジトリへのコントリビューションへの招待を承諾した。 | | `manual` | スレッドをサブスクライブした(Issue またはプルリクエストを介して)。 | -| `メンション` | コンテンツで具体的に**@メンション**された。 | +| `mention` | コンテンツで具体的に**@メンション**された。 | | `review_requested` | 自分、または自分が所属している Team が、Pull Requestのレビューを求められた。{% ifversion fpt or ghec %} | `security_alert` | {% data variables.product.prodname_dotcom %} が、リポジトリに[セキュリティの脆弱性](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies)を発見した。{% endif %} | `state_change` | スレッドの状態を変更した(たとえば、Issue をクローズしたり、プルリクエストをマージしたりした)。 | diff --git a/translations/ja-JP/content/rest/apps/marketplace.md b/translations/ja-JP/content/rest/apps/marketplace.md index 2d7d144864..d1f479344d 100644 --- a/translations/ja-JP/content/rest/apps/marketplace.md +++ b/translations/ja-JP/content/rest/apps/marketplace.md @@ -17,6 +17,6 @@ versions: この API には、[**スタブされたデータ**で {% data variables.product.prodname_github_app %} をテスト](/marketplace/integrating-with-the-github-marketplace-api/testing-github-marketplace-apps/)できるエンドポイントが含まれています。 スタブされたデータはハードコードされた偽のデータであり、実際のプランに基づいて変更されることはありません。 -スタブされたデータでテストするには、対応する本番環境の代わりにスタブされたエンドポイントを使用します。 This allows you to test whether API logic succeeds before listing {% data variables.product.prodname_github_apps %} on {% data variables.product.prodname_marketplace %}. +スタブされたデータでテストするには、対応する本番環境の代わりにスタブされたエンドポイントを使用します。 これにより、{% data variables.product.prodname_github_apps %} を {% data variables.product.prodname_marketplace %} にリストする前に、API ロジックが成功するかどうかをテストできます。 {% data variables.product.prodname_github_app %} をデプロイする前に、スタブされたエンドポイントを本番のエンドポイントに置き換えてください。 diff --git a/translations/ja-JP/content/rest/apps/oauth-applications.md b/translations/ja-JP/content/rest/apps/oauth-applications.md index 037850e51c..728a9aa99b 100644 --- a/translations/ja-JP/content/rest/apps/oauth-applications.md +++ b/translations/ja-JP/content/rest/apps/oauth-applications.md @@ -1,5 +1,5 @@ --- -title: OAuth Applications +title: OAuthアプリケーション intro: '' topics: - API @@ -11,4 +11,4 @@ versions: ghec: '*' --- -You can use this API to manage the OAuth tokens an OAuth application uses to access people's accounts on {% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}. +このAPIを使って、{% ifversion ghae %}{% data variables.product.product_name %}{% else %}{% data variables.product.product_location %}{% endif %}上のユーザのアカウントにアクセスするためにOAuthアプリケーションが使うOAuthトークンを管理できます。 diff --git a/translations/ja-JP/content/rest/apps/webhooks.md b/translations/ja-JP/content/rest/apps/webhooks.md index f86038bbc6..0df0ab0ea1 100644 --- a/translations/ja-JP/content/rest/apps/webhooks.md +++ b/translations/ja-JP/content/rest/apps/webhooks.md @@ -11,4 +11,4 @@ versions: ghec: '*' --- -A {% data variables.product.prodname_github_app %}'s webhook allows you to receive HTTP `POST` payloads whenever certain events happen for an app. {% data reusables.webhooks.webhooks-rest-api-links %} +{% data variables.product.prodname_github_app %}のwebhookを使うと、特定のイベントがアプリケーションで生じた際に、HTTPの`POST`ペイロードを受信できます。 {% data reusables.webhooks.webhooks-rest-api-links %} diff --git a/translations/ja-JP/content/rest/branches/branches.md b/translations/ja-JP/content/rest/branches/branches.md index 81c1403e61..6611f258ea 100644 --- a/translations/ja-JP/content/rest/branches/branches.md +++ b/translations/ja-JP/content/rest/branches/branches.md @@ -1,6 +1,6 @@ --- title: ブランチ -intro: The Branches API allows you to modify branches and their protection settings. +intro: Branches APIを使うと、ブランチとブランチの保護設定を変更できます。 versions: fpt: '*' ghes: '*' diff --git a/translations/ja-JP/content/rest/codespaces/codespaces.md b/translations/ja-JP/content/rest/codespaces/codespaces.md index 9f10d69304..237537bec8 100644 --- a/translations/ja-JP/content/rest/codespaces/codespaces.md +++ b/translations/ja-JP/content/rest/codespaces/codespaces.md @@ -1,6 +1,6 @@ --- title: Codespaces -intro: The Codespaces API enables you to manage your codespaces using the REST API. +intro: Codespaces APIを使うと、REST APIを利用してcodespacesを管理できます。 versions: fpt: '*' ghec: '*' @@ -11,4 +11,4 @@ miniTocMaxHeadingLevel: 3 {% data reusables.codespaces.codespaces-api-beta-note %} -{% data variables.product.prodname_codespaces %} API では、REST API を使用して {% data variables.product.prodname_codespaces %} を管理できます。 This API is available for authenticated users and OAuth Apps, but not GitHub Apps. 詳細は「[{% data variables.product.prodname_codespaces %}](/codespaces)」を参照してください。 +{% data variables.product.prodname_codespaces %} API では、REST API を使用して {% data variables.product.prodname_codespaces %} を管理できます。 このAPIは認証を受けたユーザとOAuth Appが利用できますが、GitHub Appは利用できません。 詳細は「[{% data variables.product.prodname_codespaces %}](/codespaces)」を参照してください。 diff --git a/translations/ja-JP/content/rest/codespaces/machines.md b/translations/ja-JP/content/rest/codespaces/machines.md index b39416253f..2e09792490 100644 --- a/translations/ja-JP/content/rest/codespaces/machines.md +++ b/translations/ja-JP/content/rest/codespaces/machines.md @@ -1,6 +1,6 @@ --- -title: Machines -intro: 'The Machines API allows a user to determine which machine types are available to create a codespace, either on a given repository or as an authenticated user.' +title: マシン +intro: Machines APIを使うと、指定されたリポジトリ上あるいは認証を受けたユーザとしてcodespaceを作成するために利用できるマシンタイプを判断できます。 versions: fpt: '*' ghec: '*' @@ -9,6 +9,6 @@ topics: miniTocMaxHeadingLevel: 3 --- -For more information, see "[About machine types](/codespaces/developing-in-codespaces/changing-the-machine-type-for-your-codespace#about-machine-types)." +詳しい情報については「[マシンタイプについて](/codespaces/developing-in-codespaces/changing-the-machine-type-for-your-codespace#about-machine-types)」を参照してください。 -You can also use this information when changing the machine of an existing codespace by updating its `machine` property. The machine update will take place the next time the codespace is restarted. For more information, see "[Changing the machine type for your codespace](/codespaces/developing-in-codespaces/changing-the-machine-type-for-your-codespace)." \ No newline at end of file +この情報は、`machine`プロパティを更新することによって既存のcodespaceのマシンを変更する際にも利用できます。 マシンの更新は、codespaceが次に再起動された際に行われます。 詳しい情報については「[codespaceのマシンタイプの変更](/codespaces/developing-in-codespaces/changing-the-machine-type-for-your-codespace)」を参照してください。 diff --git a/translations/ja-JP/content/rest/codespaces/repository-secrets.md b/translations/ja-JP/content/rest/codespaces/repository-secrets.md index ccab41f36e..55daa7775d 100644 --- a/translations/ja-JP/content/rest/codespaces/repository-secrets.md +++ b/translations/ja-JP/content/rest/codespaces/repository-secrets.md @@ -1,6 +1,6 @@ --- -title: Repository Secrets -intro: 'The Repository Secrets API allows a user to create, list, and delete secrets (such as access tokens for cloud services) for repositories that the user has access to.' +title: リポジトリのシークレット +intro: Repository Secrets APIを使うと、ユーザは自分がアクセスできるリポジトリのためのシークレット(クラウドサービスのためのアクセストークンなど)の作成、リスト、削除ができます。 versions: fpt: '*' ghec: '*' @@ -10,6 +10,6 @@ topics: miniTocMaxHeadingLevel: 3 --- -## Repository Secrets +## リポジトリのシークレット -The Repository Secrets API allows a user to create, list, and delete secrets (such as access tokens for cloud services) for repositories that the user has access to. These secrets are made available to the codespace at runtime. For more information, see "[Managing encrypted secrets for your codespaces](/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces)." \ No newline at end of file +Repository Secrets APIを使うと、ユーザは自分がアクセスできるリポジトリのためのシークレット(クラウドサービスのためのアクセストークンなど)の作成、リスト、削除ができます。 これらのシークレットは、実行時にcodespaceで利用できるようになります。 詳しい情報については「[codespaceのための暗号化されたシークレットの管理](/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces)」を参照してください。 diff --git a/translations/ja-JP/content/rest/codespaces/secrets.md b/translations/ja-JP/content/rest/codespaces/secrets.md index fb315dc8ce..696a292ffa 100644 --- a/translations/ja-JP/content/rest/codespaces/secrets.md +++ b/translations/ja-JP/content/rest/codespaces/secrets.md @@ -1,6 +1,6 @@ --- -title: User Secrets -intro: 'The User Secrets API allows a user to create, list, and delete secrets (such as access tokens for cloud services) as well as assign secrets to repositories that the user has access to.' +title: ユーザシークレット +intro: User Secrets APIを使うと、ユーザは自分がアクセスできるリポジトリのためのシークレット(クラウドサービスのためのアクセストークンなど)の作成、リスト、削除とともに、シークレットの割り当てができます。 versions: fpt: '*' ghec: '*' @@ -10,6 +10,6 @@ miniTocMaxHeadingLevel: 3 allowTitleToDifferFromFilename: true --- -## User Secrets +## ユーザシークレット -The User Secrets API allows a user to create, list, and delete secrets (such as access tokens for cloud services) as well as assign secrets to repositories that the user has access to. These secrets are made available to the codespace at runtime. For more information, see "[Managing encrypted secrets for your codespaces](/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces)." \ No newline at end of file +User Secrets APIを使うと、ユーザは自分がアクセスできるリポジトリのためのシークレット(クラウドサービスのためのアクセストークンなど)の作成、リスト、削除とともに、シークレットの割り当てができます。 これらのシークレットは、実行時にcodespaceで利用できるようになります。 詳しい情報については「[codespaceのための暗号化されたシークレットの管理](/codespaces/managing-your-codespaces/managing-encrypted-secrets-for-your-codespaces)」を参照してください。 diff --git a/translations/ja-JP/content/rest/collaborators/collaborators.md b/translations/ja-JP/content/rest/collaborators/collaborators.md index b40aa8c971..2bec28d0d8 100644 --- a/translations/ja-JP/content/rest/collaborators/collaborators.md +++ b/translations/ja-JP/content/rest/collaborators/collaborators.md @@ -1,6 +1,6 @@ --- title: コラボレータ -intro: 'The Collaborators API allows you to add, invite, and remove collaborators from a repository.' +intro: Collaborators APIを使うと、リポジトリでコラボレータの追加、招待、削除が行えます。 versions: fpt: '*' ghes: '*' diff --git a/translations/ja-JP/content/rest/collaborators/index.md b/translations/ja-JP/content/rest/collaborators/index.md index b13550d00d..5da4c4d966 100644 --- a/translations/ja-JP/content/rest/collaborators/index.md +++ b/translations/ja-JP/content/rest/collaborators/index.md @@ -1,6 +1,6 @@ --- title: コラボレータ -intro: 'The Collaborators API allows you to add, invite, and remove collaborators from a repository.' +intro: Collaborators APIを使うと、リポジトリでコラボレータの追加、招待、削除が行えます。 allowTitleToDifferFromFilename: true versions: fpt: '*' diff --git a/translations/ja-JP/content/rest/commits/commits.md b/translations/ja-JP/content/rest/commits/commits.md index 322b77c292..add8ca45b5 100644 --- a/translations/ja-JP/content/rest/commits/commits.md +++ b/translations/ja-JP/content/rest/commits/commits.md @@ -1,6 +1,6 @@ --- title: コミット -intro: 'The Commits API allows you to list, view, and compare commits in a repository. コミットコメントやコミットのステータスの操作もできます。' +intro: Commits APIを使うと、リポジトリ内のコミットのリスト、表示、比較ができます。 コミットコメントやコミットのステータスの操作もできます。 versions: fpt: '*' ghes: '*' diff --git a/translations/ja-JP/content/rest/commits/statuses.md b/translations/ja-JP/content/rest/commits/statuses.md index c70b141ecd..9d22dd8709 100644 --- a/translations/ja-JP/content/rest/commits/statuses.md +++ b/translations/ja-JP/content/rest/commits/statuses.md @@ -1,6 +1,6 @@ --- title: コミットのステータス -intro: 'The status API allows external services to mark commits with an `error`, `failure`, `pending`, or `success` state, which is then reflected in pull requests involving those commits.' +intro: ステータス API を使用すると、外部サービスがコミットに `error`、`failure`、`pending`、`success`ステータスを付けることができ、このステータスはコミットが含まれるPull Requestに反映されます。 versions: fpt: '*' ghes: '*' @@ -12,12 +12,12 @@ miniTocMaxHeadingLevel: 3 allowTitleToDifferFromFilename: true --- -Statuses can also include an optional `description` and `target_url`, and we highly recommend providing them as they make statuses much more useful in the GitHub UI. +ステータスには、オプションとして `description` と `target_url` を含めることもできます。これにより GitHub UI でステータスをより有用なものにできるので、強くおすすめします。 -As an example, one common use is for continuous integration services to mark commits as passing or failing builds using status. The `target_url` would be the full URL to the build output, and the `description` would be the high level summary of what happened with the build. +たとえば、継続的インテグレーションサービスの典型的な使用方法の一つが、ステータスを使用してコミットに成功もしくは失敗のビルドとマークすることです。 `target_url` でビルドの出力先の完全な URL、`description` でビルドで発生したことの概要を示すといったようにします。 -ステータスには、どのサービスがそのステータスを提供しているかを示す `context` を含めることができます。 たとえば、継続的インテグレーションサービスのプッシュステータスに `ci` のコンテキストを、セキュリティ監査ツールのプッシュステータスに `security` のコンテキストを含めることができます。 You can then use the [Get the combined status for a specific reference](/rest/reference/commits#get-the-combined-status-for-a-specific-reference) to retrieve the whole status for a commit. +ステータスには、どのサービスがそのステータスを提供しているかを示す `context` を含めることができます。 たとえば、継続的インテグレーションサービスのプッシュステータスに `ci` のコンテキストを、セキュリティ監査ツールのプッシュステータスに `security` のコンテキストを含めることができます。 その後、[特定リファレンスの複合的なステータス](/rest/reference/commits#get-the-combined-status-for-a-specific-reference)を使用して、コミットの全体のステータスを取得できます。 -Note that the `repo:status` [OAuth scope](/developers/apps/scopes-for-oauth-apps) grants targeted access to statuses **without** also granting access to repository code, while the `repo` scope grants permission to code as well as statuses. +`repo` スコープはコードにもステータスにもアクセス権を付与するのに対し、`repo:status` [OAuth scope](/developers/apps/scopes-for-oauth-apps) はステータスのみに絞ってアクセス権を付与し、リポジトリのコードにはアクセス権を付与**しない**ことに注意してください。 GitHub App を開発していて、外部サービスについて詳細な情報を提供したい場合は、[Checks API](/rest/reference/checks) を使用できます。 diff --git a/translations/ja-JP/content/rest/dependabot/index.md b/translations/ja-JP/content/rest/dependabot/index.md index c82be888af..810b622721 100644 --- a/translations/ja-JP/content/rest/dependabot/index.md +++ b/translations/ja-JP/content/rest/dependabot/index.md @@ -1,6 +1,6 @@ --- title: Dependabot -intro: 'With the Dependabot Secrets API, you can manage and control Dependabot secrets for an organization or repository.' +intro: Dependabot Secrets API を使用すると、OrganizationまたはリポジトリのDependabotシークレットを管理および制御できます。 allowTitleToDifferFromFilename: true versions: fpt: '*' diff --git a/translations/ja-JP/content/rest/dependabot/secrets.md b/translations/ja-JP/content/rest/dependabot/secrets.md index bc9b3753e5..1d96178d2c 100644 --- a/translations/ja-JP/content/rest/dependabot/secrets.md +++ b/translations/ja-JP/content/rest/dependabot/secrets.md @@ -1,6 +1,6 @@ --- title: シークレット -intro: 'With the Dependabot Secrets API, you can manage and control Dependabot secrets for an organization or repository.' +intro: Dependabot Secrets API を使用すると、OrganizationまたはリポジトリのDependabotシークレットを管理および制御できます。 topics: - API versions: @@ -10,6 +10,6 @@ versions: allowTitleToDifferFromFilename: true --- -The {% data variables.product.prodname_dependabot %} Secrets API lets you create, update, delete, and retrieve information about encrypted secrets. {% data reusables.actions.about-secrets %} For more information, see "[Managing encrypted secrets for Dependabot](/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/managing-encrypted-secrets-for-dependabot)." +{% data variables.product.prodname_dependabot %} Secret APIを使用すると、暗号化されたシークレットに関する情報の作成、更新、削除、取得ができます。 {% data reusables.actions.about-secrets %} 詳しい情報については「[Dependabotの暗号化されたシークレットの管理](/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/managing-encrypted-secrets-for-dependabot)」を参照してください。 -{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %} must have the `dependabot_secrets` permission to use this API. 認証されたユーザは、シークレットを作成、更新、または読み取るために、リポジトリへのコラボレータアクセス権を持っている必要があります。 +{% data reusables.actions.actions-authentication %} {% data variables.product.prodname_github_apps %}がこのAPIを使うには、`dependabot_secrets`権限を持っていなければなりません。 認証されたユーザは、シークレットを作成、更新、または読み取るために、リポジトリへのコラボレータアクセス権を持っている必要があります。 diff --git a/translations/ja-JP/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md b/translations/ja-JP/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md index 39941a5137..31f400a08b 100644 --- a/translations/ja-JP/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md +++ b/translations/ja-JP/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md @@ -50,13 +50,13 @@ For example, you can use `https://github.com/sponsors/{account}?metadata_campaig ## 最近のスポンサーシップアクティビティを表示する {% data reusables.sponsors.navigate-to-sponsors-dashboard %} -{% data reusables.sponsors.activity-tab %} +{% data reusables.sponsors.your-sponsors-tab %} ## スポンサーシップデータをエクスポートする スポンサーシップのトランザクションは 月単位でエクスポートできます。 {% data variables.product.company_short %} で、選択した月のスポンサーすべてのトランザクションデータがメールでエクスポートされます。 エクスポートが完了したら、別の月のデータをエクスポートできます。 スポンサードアカウントごとに、1 時間に 10 セットまでのデータをエクスポートできます。 {% data reusables.sponsors.navigate-to-sponsors-dashboard %} -{% data reusables.sponsors.activity-tab %} -1. {% octicon "download" aria-label="The download icon" %}[**Export**] をクリックします。 ![エクスポートボタン](/assets/images/help/sponsors/export-all.png) +{% data reusables.sponsors.your-sponsors-tab %} +1. In the top-right, click {% octicon "download" aria-label="The download icon" %} **Export**. ![エクスポートボタン](/assets/images/help/sponsors/export-all.png) 1. エクスポートしたいデータの時間枠と形式を選択し、[**Start export**] をクリックします。 ![データエクスポートのオプション](/assets/images/help/sponsors/export-your-sponsors.png) diff --git a/translations/ja-JP/data/reusables/gated-features/org-insights.md b/translations/ja-JP/data/reusables/gated-features/org-insights.md deleted file mode 100644 index 51448347bc..0000000000 --- a/translations/ja-JP/data/reusables/gated-features/org-insights.md +++ /dev/null @@ -1 +0,0 @@ -Organizationインサイトは{% data variables.product.prodname_ghe_cloud %}で利用できます。 詳細は「[{% data variables.product.prodname_dotcom %} の製品](/articles/github-s-products)」を参照してください。 diff --git a/translations/ja-JP/data/reusables/sponsors/activity-tab.md b/translations/ja-JP/data/reusables/sponsors/activity-tab.md deleted file mode 100644 index e3a6fa38b0..0000000000 --- a/translations/ja-JP/data/reusables/sponsors/activity-tab.md +++ /dev/null @@ -1 +0,0 @@ -1. 左のサイドバーで**Activity(アクティビティ)**をクリックしてください。 ![アクティビティタブ](/assets/images/help/sponsors/activity-tab.png) diff --git a/translations/ja-JP/data/reusables/sponsors/your-sponsors-tab.md b/translations/ja-JP/data/reusables/sponsors/your-sponsors-tab.md new file mode 100644 index 0000000000..7bc07aadf0 --- /dev/null +++ b/translations/ja-JP/data/reusables/sponsors/your-sponsors-tab.md @@ -0,0 +1 @@ +1. 左のサイドバーで**Your sponsors(あなたのスポンサー)**をクリックしてください。 ![Your sponsors tab](/assets/images/help/sponsors/your-sponsors-tab.png) diff --git a/translations/log/cn-resets.csv b/translations/log/cn-resets.csv index 6817ea9c4c..2834f0a435 100644 --- a/translations/log/cn-resets.csv +++ b/translations/log/cn-resets.csv @@ -53,6 +53,7 @@ translations/zh-CN/content/admin/enterprise-management/updating-the-virtual-mach translations/zh-CN/content/admin/github-actions/advanced-configuration-and-troubleshooting/backing-up-and-restoring-github-enterprise-server-with-github-actions-enabled.md,broken liquid tags translations/zh-CN/content/admin/github-actions/advanced-configuration-and-troubleshooting/index.md,broken liquid tags translations/zh-CN/content/admin/github-actions/advanced-configuration-and-troubleshooting/troubleshooting-github-actions-for-your-enterprise.md,broken liquid tags +translations/zh-CN/content/admin/github-actions/advanced-configuration-and-troubleshooting/using-a-staging-environment.md,broken liquid tags translations/zh-CN/content/admin/github-actions/enabling-github-actions-for-github-enterprise-server/enabling-github-actions-with-amazon-s3-storage.md,broken liquid tags translations/zh-CN/content/admin/github-actions/enabling-github-actions-for-github-enterprise-server/enabling-github-actions-with-azure-blob-storage.md,broken liquid tags translations/zh-CN/content/admin/github-actions/enabling-github-actions-for-github-enterprise-server/enabling-github-actions-with-minio-gateway-for-nas-storage.md,broken liquid tags @@ -71,6 +72,7 @@ translations/zh-CN/content/admin/github-actions/managing-access-to-actions-from- translations/zh-CN/content/admin/github-actions/managing-access-to-actions-from-githubcom/setting-up-the-tool-cache-on-self-hosted-runners-without-internet-access.md,broken liquid tags translations/zh-CN/content/admin/github-actions/managing-access-to-actions-from-githubcom/using-the-latest-version-of-the-official-bundled-actions.md,broken liquid tags translations/zh-CN/content/admin/github-actions/using-github-actions-in-github-ae/index.md,broken liquid tags +translations/zh-CN/content/admin/identity-and-access-management/index.md,rendering error translations/zh-CN/content/admin/identity-and-access-management/using-enterprise-managed-users-and-saml-for-iam/about-enterprise-managed-users.md,broken liquid tags translations/zh-CN/content/admin/identity-and-access-management/using-enterprise-managed-users-and-saml-for-iam/configuring-scim-provisioning-for-enterprise-managed-users-with-okta.md,broken liquid tags translations/zh-CN/content/admin/identity-and-access-management/using-enterprise-managed-users-and-saml-for-iam/configuring-scim-provisioning-for-enterprise-managed-users.md,broken liquid tags @@ -78,6 +80,7 @@ translations/zh-CN/content/admin/identity-and-access-management/using-enterprise translations/zh-CN/content/admin/identity-and-access-management/using-saml-for-enterprise-iam/configuring-user-provisioning-for-your-enterprise.md,broken liquid tags translations/zh-CN/content/admin/index.md,broken liquid tags translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/installing-github-enterprise-server-on-aws.md,broken liquid tags +translations/zh-CN/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise.md,broken liquid tags translations/zh-CN/content/admin/overview/about-enterprise-accounts.md,Listed in localization-support#489 translations/zh-CN/content/admin/overview/about-enterprise-accounts.md,rendering error translations/zh-CN/content/admin/packages/enabling-github-packages-with-aws.md,broken liquid tags @@ -223,6 +226,7 @@ translations/zh-CN/content/issues/using-labels-and-milestones-to-track-work/mana translations/zh-CN/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization.md,broken liquid tags translations/zh-CN/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization.md,broken liquid tags translations/zh-CN/content/organizations/managing-membership-in-your-organization/can-i-create-accounts-for-people-in-my-organization.md,broken liquid tags +translations/zh-CN/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md,broken liquid tags translations/zh-CN/content/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization.md,broken liquid tags translations/zh-CN/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md,broken liquid tags translations/zh-CN/content/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization.md,broken liquid tags diff --git a/translations/zh-CN/content/actions/learn-github-actions/contexts.md b/translations/zh-CN/content/actions/learn-github-actions/contexts.md index 574de7d67c..6fbbbad372 100644 --- a/translations/zh-CN/content/actions/learn-github-actions/contexts.md +++ b/translations/zh-CN/content/actions/learn-github-actions/contexts.md @@ -57,6 +57,8 @@ miniTocMaxHeadingLevel: 3 - 以 `a-Z` 或 `_` 开头。 - 后跟 `a-Z` `0-9` `-` 或 `_`。 +如果尝试取消引用不存在的属性,则该属性的计算结果将为空字符串。 + ### 确定何时使用上下文 {% data reusables.actions.using-context-or-environment-variables %} diff --git a/translations/zh-CN/content/actions/using-workflows/events-that-trigger-workflows.md b/translations/zh-CN/content/actions/using-workflows/events-that-trigger-workflows.md index ca106c8fda..8eee80aae4 100644 --- a/translations/zh-CN/content/actions/using-workflows/events-that-trigger-workflows.md +++ b/translations/zh-CN/content/actions/using-workflows/events-that-trigger-workflows.md @@ -1157,7 +1157,7 @@ jobs: 您可以使用 [crontab guru](https://crontab.guru/) 帮助生成计划任务语法并确认它在何时运行。 为帮助您开始,我们还提供了一系列 [crontab guru 示例](https://crontab.guru/examples.html)。 -计划工作流程的通知将发送给最后修改工作流程文件中的 cron 语法的用户。 更多信息请参阅“[工作流程运行通知](/actions/guides/about-continuous-integration#notifications-for-workflow-runs)”。 +计划工作流程的通知将发送给最后修改工作流程文件中的 cron 语法的用户。 更多信息请参阅“[工作流程运行通知](/actions/monitoring-and-troubleshooting-workflows/notifications-for-workflow-runs)”。 ### `状态` diff --git a/translations/zh-CN/content/actions/using-workflows/triggering-a-workflow.md b/translations/zh-CN/content/actions/using-workflows/triggering-a-workflow.md index b7ef1add69..ab4a6f8192 100644 --- a/translations/zh-CN/content/actions/using-workflows/triggering-a-workflow.md +++ b/translations/zh-CN/content/actions/using-workflows/triggering-a-workflow.md @@ -36,7 +36,7 @@ miniTocMaxHeadingLevel: 3 {% data reusables.actions.actions-do-not-trigger-workflows %} 更多信息请参阅“[使用 GITHUB_TOKEN 验证身份](/actions/configuring-and-managing-workflows/authenticating-with-the-github_token)”。 -如果确实要从工作流程运行中触发工作流程,则可以使用个人访问令牌而不是 `GITHUB_TOKEN` 来触发需要令牌的事件。 您需要创建个人访问令牌并将其存储为密码。 为了最大限度地降低 {% data variables.product.prodname_actions %} 使用成本,请确保不要创建递归或意外的工作流程。 For more information about creating a personal access token, see "[Creating a personal access token](/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token)." 有关存储个人访问令牌的更多信息,请参阅“[创建和存储加密密码](/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets)”。 +如果确实要从工作流程运行中触发工作流程,则可以使用个人访问令牌而不是 `GITHUB_TOKEN` 来触发需要令牌的事件。 您需要创建个人访问令牌并将其存储为密码。 为了最大限度地降低 {% data variables.product.prodname_actions %} 使用成本,请确保不要创建递归或意外的工作流程。 有关创建个人访问令牌的更多信息,请参阅“[创建个人访问令牌](/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token)”。 有关存储个人访问令牌的更多信息,请参阅“[创建和存储加密密码](/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets)”。 例如,以下工作流程使用个人访问令牌(存储为称为 `MY_TOKEN` 的机密)通过 {% data variables.product.prodname_cli %} 向议题添加标签。 添加标签时运行的任何工作流程都将在执行此步骤后运行。 diff --git a/translations/zh-CN/content/actions/using-workflows/using-starter-workflows.md b/translations/zh-CN/content/actions/using-workflows/using-starter-workflows.md index e6cbff8216..862859a649 100644 --- a/translations/zh-CN/content/actions/using-workflows/using-starter-workflows.md +++ b/translations/zh-CN/content/actions/using-workflows/using-starter-workflows.md @@ -39,10 +39,10 @@ topics: {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.actions-tab %} 1. 如果存储库中已有工作流程,请单击 **New workflow(新建工作流程)**。 -1. The "{% if actions-starter-template-ui %}Choose a workflow{% else %}Choose a workflow template{% endif %}" page shows a selection of recommended starter workflows. Find the starter workflow that you want to use, then click {% if actions-starter-template-ui %}**Configure**{% else %}**Set up this workflow**{% endif %}.{% if actions-starter-template-ui %} To help you find the starter workflow that you want, you can search for keywords or filter by category.{% endif %} +1. “{% if actions-starter-template-ui %}选择工作流程{% else %}选择工作流程模板{% endif %}”页面显示推荐的入门工作流程。 找到要使用的入门工作流程,然后单击 {% if actions-starter-template-ui %}**Configure(配置)**{% else %}**Set up this workflow(设置此工作流程)**{% endif %}。{% if actions-starter-template-ui %} 为帮助您找到所需的入门工作流程,您可以搜索关键字或按类别进行筛选。{% endif %} {% if actions-starter-template-ui %}![Configure this workflow](/assets/images/help/settings/actions-create-starter-workflow-updated-ui.png){% else %}![Set up this workflow](/assets/images/help/settings/actions-create-starter-workflow.png){% endif %} -1. 如果入门工作流程包含详细说明其他设置步骤的注释,请按照下列步骤操作。 许多入门工作流程都有相应的指南。 For more information, see the [{% data variables.product.prodname_actions %} guides](/actions/guides). +1. 如果入门工作流程包含详细说明其他设置步骤的注释,请按照下列步骤操作。 许多入门工作流程都有相应的指南。 更多信息请参阅 [{% data variables.product.prodname_actions %} 指南](/actions/guides)。 1. 某些入门工作流程使用机密。 例如 {% raw %}`${{ secrets.npm_token }}`{% endraw %}。 如果入门工作流使用机密,请将机密名称中描述的值作为机密存储在存储库中。 更多信息请参阅“[加密密码](/actions/reference/encrypted-secrets)”。 1. (可选)进行其他更改。 例如,您可能希望更改 `on` 的值,以便在工作流程运行时进行更改。 1. 单击 **Start commit(开始提交)**。 diff --git a/translations/zh-CN/content/admin/all-releases.md b/translations/zh-CN/content/admin/all-releases.md index 0c2e8c852a..5099b0f548 100644 --- a/translations/zh-CN/content/admin/all-releases.md +++ b/translations/zh-CN/content/admin/all-releases.md @@ -1,6 +1,6 @@ --- title: GitHub Enterprise Server 发行版 -intro: '{% data variables.product.company_short %} releases new versions of {% data variables.product.product_name %} regularly. You can review supported versions, see deprecation dates, and browse documentation for the release you''ve deployed.' +intro: '{% data variables.product.company_short %} 定期发布新版本的 {% data variables.product.product_name %} 。 您可以查看支持的版本、查看弃用日期以及浏览已部署版本的文档。' allowTitleToDifferFromFilename: true versions: ghes: '*' @@ -10,44 +10,44 @@ topics: shortTitle: 版本发布 --- -## About releases of {% data variables.product.product_name %} +## 关于 {% data variables.product.product_name %} 的发布 -{% data reusables.enterprise.constantly-improving %} {% data variables.product.company_short %} supports the four most recent feature releases. 更多信息请参阅“[关于升级到新发行版](/admin/overview/about-upgrades-to-new-releases)”。 +{% data reusables.enterprise.constantly-improving %} {% data variables.product.company_short %} 支持四个最新的功能版本。 更多信息请参阅“[关于升级到新发行版](/admin/overview/about-upgrades-to-new-releases)”。 -You can see what's new for each release in the [release notes](/admin/release-notes), and you can view administrator and user documentation for all releases here on {% data variables.product.prodname_docs %}. When you read the documentation, make sure to select the version that reflects your product. 更多信息请参阅“[关于 {% data variables.product.prodname_docs %} 的版本](/get-started/learning-about-github/about-versions-of-github-docs)”。 +您可以在 [发行说明](/admin/release-notes)中查看每个版本的新增功能,也可以在 {% data variables.product.prodname_docs %} 上查看所有版本的管理员和用户文档。 阅读文档时,请确保选择反映您的产品的版本。 更多信息请参阅“[关于 {% data variables.product.prodname_docs %} 的版本](/get-started/learning-about-github/about-versions-of-github-docs)”。 -## Currently supported releases +## 当前支持的版本 -{% data variables.product.company_short %} supports the following releases of {% data variables.product.product_name %}. For more information about the latest release, see the [{% data variables.product.prodname_enterprise %}](https://github.com/enterprise) website. +{% data variables.product.company_short %} 支持以下版本的 {% data variables.product.product_name %}。 有关最新版本的详细信息,请参阅 [{% data variables.product.prodname_enterprise %}](https://github.com/enterprise) 网站。 -| 版本 | 发行版 | Deprecation | 发行说明 | 文档 | -|:-- |:--- |:----------- |:---- |:-- | -| | | | | | +| 版本 | 发行版 | 弃用 | 发行说明 | 文档 | +|:-- |:--- |:-- |:---- |:-- | +| | | | | | {%- for version in enterpriseServerReleases.supported %} -| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [{{version}} release notes](/enterprise-server@{{version}}/admin/release-notes) | [{{version}} documentation](/enterprise-server@{{version}}) | +| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [{{version}} 发行说明](/enterprise-server@{{version}}/admin/release-notes) | [{{version}} 文档](/enterprise-server@{{version}}) | {%- endfor %} -## Deprecated releases +## 已弃用的版本 -{% data variables.product.company_short %} provides documentation for deprecated versions, but does not maintain or update the documentation. +{% data variables.product.company_short %} 为已弃用的版本提供文档,但不维护或更新文档。 -| 版本 | 发行版 | Deprecation | 发行说明 | 文档 | -|:-- |:--- |:----------- |:---- |:-- | -| | | | | | +| 版本 | 发行版 | 弃用 | 发行说明 | 文档 | +|:-- |:--- |:-- |:---- |:-- | +| | | | | | {%- for version in enterpriseServerReleases.deprecatedReleasesWithNewFormat %} -| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [{{version}} release notes](/enterprise-server@{{version}}/admin/release-notes) | [{{version}} documentation](/enterprise-server@{{version}}) | +| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [{{version}} 发行说明](/enterprise-server@{{version}}/admin/release-notes) | [{{version}} 文档](/enterprise-server@{{version}}) | {%- endfor %} {%- for version in enterpriseServerReleases.deprecatedReleasesWithLegacyFormat %} -| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [{{version}} release notes](https://enterprise.github.com/releases/series/{{version}}) | [{{version}} documentation](/enterprise/{{version}}) | +| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [{{version}} 发行说明](https://enterprise.github.com/releases/series/{{version}}) | [{{version}} 文档](/enterprise/{{version}}) | {%- endfor %} ### 已弃用的开发者文档 -{% data variables.product.company_short %} hosted developer documentation for {% data variables.product.product_name %} on a separate site until the 2.17 release. {% data variables.product.company_short %} continues to provide developer documentation for version 2.16 and earlier, but does not maintain or update the documentation. +{% data variables.product.company_short %} 2.17 版本之前,在单独的站点上托管的 {% data variables.product.product_name %} 开发人员文档。 {% data variables.product.company_short %} 继续提供版本 2.16 及更早版本的开发人员文档,但不维护或更新文档。 -| 版本 | 发行版 | Deprecation | Developer documentation | -|:-- |:--- |:----------- |:----------------------- | -| | | | | +| 版本 | 发行版 | 弃用 | 开发人员文档 | +|:-- |:--- |:-- |:------ | +| | | | | {%- for version in enterpriseServerReleases.deprecatedReleasesOnDeveloperSite %} -| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [{{version}} developer documentation](https://developer.github.com/enterprise/{{version}}) | +| {{version}} | {{enterpriseServerReleases.dates[version].releaseDate}} | {{enterpriseServerReleases.dates[version].deprecationDate}} | [{{version}} 开发人员文档](https://developer.github.com/enterprise/{{version}}) | {%- endfor %} diff --git a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md index aff8eb7f73..5e2a6633ac 100644 --- a/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md +++ b/translations/zh-CN/content/admin/configuration/configuring-your-enterprise/enabling-private-mode.md @@ -22,7 +22,7 @@ topics: - Security --- -如果 {% data variables.product.product_location %} 可通过 Internet 公开访问,您必须启用私有模式。 在私有模式下,用户不能通过 `git://` 匿名克隆仓库。 如果还启用了内置身份验证,管理员必须邀请新用户在实例上创建帐户。 For more information, see "[Configuring built-in authentication](/admin/identity-and-access-management/using-built-in-authentication/configuring-built-in-authentication)." +如果 {% data variables.product.product_location %} 可通过 Internet 公开访问,您必须启用私有模式。 在私有模式下,用户不能通过 `git://` 匿名克隆仓库。 如果还启用了内置身份验证,管理员必须邀请新用户在实例上创建帐户。 更多信息请参阅“[配置内置身份验证](/admin/identity-and-access-management/using-built-in-authentication/configuring-built-in-authentication)”。 {% data reusables.enterprise_installation.image-urls-viewable-warning %} diff --git a/translations/zh-CN/content/admin/configuration/index.md b/translations/zh-CN/content/admin/configuration/index.md index 7bce194618..5a01da1f58 100644 --- a/translations/zh-CN/content/admin/configuration/index.md +++ b/translations/zh-CN/content/admin/configuration/index.md @@ -1,6 +1,6 @@ --- title: 配置 GitHub Enterprise -shortTitle: Configure GitHub Enterprise +shortTitle: 配置 GitHub Enterprise intro: 您可以配置企业以适应组织的需求。 redirect_from: - /enterprise/admin/configuration diff --git a/translations/zh-CN/content/admin/github-actions/advanced-configuration-and-troubleshooting/using-a-staging-environment.md b/translations/zh-CN/content/admin/github-actions/advanced-configuration-and-troubleshooting/using-a-staging-environment.md index e843a0a9bb..673c08e87f 100644 --- a/translations/zh-CN/content/admin/github-actions/advanced-configuration-and-troubleshooting/using-a-staging-environment.md +++ b/translations/zh-CN/content/admin/github-actions/advanced-configuration-and-troubleshooting/using-a-staging-environment.md @@ -1,5 +1,5 @@ --- -title: 使用暂存环境 +title: Using a staging environment intro: 'Learn about using {% data variables.product.prodname_actions %} with {% data variables.product.prodname_ghe_server %} staging instances.' versions: ghes: '*' @@ -16,7 +16,7 @@ shortTitle: Use staging environment ## About staging environments for {% data variables.product.product_name %} -为 {% data variables.product.product_location %} 提供临时或测试环境会有用,这样您就可以在生产环境中实施更新或新功能之前进行测试。 更多信息请参阅“[设置暂存实例](/admin/installation/setting-up-a-github-enterprise-server-instance/setting-up-a-staging-instance)”。 +It can be useful to have a staging or testing environment for {% data variables.product.product_location %}, so that you can test updates or new features before implementing them in your production environment. For more information, see "[Setting up a staging instance](/admin/installation/setting-up-a-github-enterprise-server-instance/setting-up-a-staging-instance)." ## Using a staging environment with {% data variables.product.prodname_actions %} @@ -40,12 +40,12 @@ For more information about storage configuration for {% data variables.product.p To more accurately mirror your production environment, you can optionally copy files from your production storage location for {% data variables.product.prodname_actions %} to the staging storage location. -* 对于 Azure 存储帐户,您可以使用 [`azcop`](https://docs.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-blobs#copy-all-containers-directories-and-blobs-to-another-storage-account)。 例如: +* For an Azure storage account, you can use [`azcopy`](https://docs.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-blobs#copy-all-containers-directories-and-blobs-to-another-storage-account). For example: ```shell azcopy copy 'https://SOURCE-STORAGE-ACCOUNT-NAME.blob.core.windows.net/SAS-TOKEN' 'https://DESTINATION-STORAGE-ACCOUNT-NAME.blob.core.windows.net/' --recursive ``` -* 对于 Amazon S3 存储桶,您可以使用 [`aws s3 sync`](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3/sync.html)。 例如: +* For Amazon S3 buckets, you can use [`aws s3 sync`](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3/sync.html). For example: ```shell aws s3 sync s3://SOURCE-BUCKET s3://DESTINATION-BUCKET diff --git a/translations/zh-CN/content/admin/identity-and-access-management/index.md b/translations/zh-CN/content/admin/identity-and-access-management/index.md index fa97844395..24df6fbcd5 100644 --- a/translations/zh-CN/content/admin/identity-and-access-management/index.md +++ b/translations/zh-CN/content/admin/identity-and-access-management/index.md @@ -1,6 +1,6 @@ --- -title: 身份和访问管理 -intro: 'You can configure how people access {% ifversion ghec or ghae %}your enterprise on {% data variables.product.product_name %}{% elsif ghes %}{% data variables.product.product_location %}{% endif %}.' +title: Identity and access management +intro: You can configure how people access {% ifversion ghec or ghae %}your enterprise on {% data variables.product.product_name %}{% elsif ghes %}{% data variables.product.product_location %}{% endif %}. redirect_from: - /enterprise/admin/authentication - /admin/authentication diff --git a/translations/zh-CN/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/about-authentication-for-your-enterprise.md b/translations/zh-CN/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/about-authentication-for-your-enterprise.md index dcc0dc599e..d398d8ec13 100644 --- a/translations/zh-CN/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/about-authentication-for-your-enterprise.md +++ b/translations/zh-CN/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/about-authentication-for-your-enterprise.md @@ -56,7 +56,7 @@ The following authentication methods are available for {% data variables.product ### Built-in authentication -{% data reusables.enterprise_user_management.built-in-authentication-new-accounts %} To access your instance, people authenticate with the credentials for the account. For more information, see "[Configuring built-in authentication](/admin/identity-and-access-management/using-built-in-authentication/configuring-built-in-authentication)." +{% data reusables.enterprise_user_management.built-in-authentication-new-accounts %} To access your instance, people authenticate with the credentials for the account. 更多信息请参阅“[配置内置身份验证](/admin/identity-and-access-management/using-built-in-authentication/configuring-built-in-authentication)”。 ### External authentication diff --git a/translations/zh-CN/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/index.md b/translations/zh-CN/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/index.md index 6514703190..6a2c9c949c 100644 --- a/translations/zh-CN/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/index.md +++ b/translations/zh-CN/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/index.md @@ -2,11 +2,11 @@ title: 管理企业的 IAM intro: | {%- ifversion ghec %} - You can invite existing personal accounts on {% data variables.product.product_location %} to be members of your enterprise, and you can optionally enable SAML single sign-on (SSO) to centrally manage access. Alternatively, you can use {% data variables.product.prodname_emus %} with SAML SSO to create and control the accounts of your enterprise members. + 您可以邀请 {% data variables.product.product_location %} 上的现有个人帐户成为企业的成员,还可以选择启用 SAML 单点登录 (SSO) 来集中管理访问权限。 或者,您也可以使用 {% data variables.product.prodname_emus %} 和 SAML SSO 来创建和控制企业成员的帐户。 {%- elsif ghes %} - You can use {% data variables.product.product_name %}'s built-in authentication, or you can centrally manage authentication and access to your instance with CAS, LDAP, or SAML. + 您可以使用 {% data variables.product.product_name %} 的内置身份验证,也可以使用 CAS、LDAP 或 SAML 集中管理身份验证和对实例的访问。 {%- elsif ghae %} - You must use SAML single sign-on (SSO) to centrally manage authentication and access to your enterprise on {% data variables.product.product_name %}. Optionally, you can use System for Cross-domain Identity Management (SCIM) to automatically provision accounts and access on {% data variables.product.product_name %} when you make changes on your identity provider (IdP). + 您必须使用 SAML 单点登录 (SSO) 在 {% data variables.product.product_name %} 集中管理身份验证和对企业的访问。 (可选)当您对身份提供程序 (IdP) 进行更改时,可以使用跨域身份管理系统 (SCIM) 在 {% data variables.product.product_name %} 上自动预置帐户和访问权限。 {%- endif %} redirect_from: - /enterprise/admin/categories/authentication @@ -30,6 +30,6 @@ children: - /username-considerations-for-external-authentication - /changing-authentication-methods - /allowing-built-in-authentication-for-users-outside-your-provider -shortTitle: Manage IAM for your enterprise +shortTitle: 管理企业的 IAM --- diff --git a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/setting-up-a-staging-instance.md b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/setting-up-a-staging-instance.md index 4cb1b65df4..462c102896 100644 --- a/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/setting-up-a-staging-instance.md +++ b/translations/zh-CN/content/admin/installation/setting-up-a-github-enterprise-server-instance/setting-up-a-staging-instance.md @@ -1,6 +1,6 @@ --- title: 设置暂存实例 -intro: 'You can set up a {% data variables.product.product_name %} instance in a separate, isolated environment, and use the instance to validate and test changes.' +intro: '您可以在单独的隔离环境中设置 {% data variables.product.product_name %} 实例,并使用该实例来验证和测试更改。' redirect_from: - /enterprise/admin/installation/setting-up-a-staging-instance - /admin/installation/setting-up-a-staging-instance @@ -14,23 +14,23 @@ topics: shortTitle: 设置暂存实例 --- -## About staging instances +## 关于暂存实例 -{% data variables.product.company_short %} recommends that you set up a separate environment to test backups, updates, or changes to the configuration for {% data variables.product.product_location %}. This environment, which you should isolate from your production systems, is called a staging environment. +{% data variables.product.company_short %} 建议您设置单独的环境来测试 {% data variables.product.product_location %}的备份、更新或配置更改。 此环境(应与生产系统隔离)称为暂存环境。 -For example, to protect against loss of data, you can regularly validate the backup of your production instance. You can regularly restore the backup of your production data to a separate {% data variables.product.product_name %} instance in a staging environment. On this staging instance, you could also test the upgrade to the latest feature release of {% data variables.product.product_name %}. +例如,为了防止数据丢失,您可以定期验证生产实例的备份。 您可以定期将生产数据的备份还原到暂存环境中的单独 {% data variables.product.product_name %} 实例。 在此暂存实例上,您还可以测试升级到 {% data variables.product.product_name %} 的最新功能版本。 {% tip %} -**Tip:** You may reuse your existing {% data variables.product.prodname_enterprise %} license file as long as the staging instance is not used in a production capacity. +**提示:** 只要生产容量中未使用暂存实例,您就可以重复使用现有的 {% data variables.product.prodname_enterprise %} 许可文件。 {% endtip %} -## Considerations for a staging environment +## 暂存环境的注意事项 -To thoroughly test {% data variables.product.product_name %} and recreate an environment that's as similar to your production environment as possible, consider the external systems that interact with your instance. For example, you may want to test the following in your staging environment. +要彻底测试 {% data variables.product.product_name %} 并重新创建与您的生产环境尽可能相似的环境,请考虑与您的实例交互的外部系统。 例如,您可能希望在暂存环境中测试以下内容。 -- Authentication, especially if you use an external authentication provider like SAML +- 身份验证,尤其是在使用外部身份验证提供程序(如 SAML)时 - 与外部事件单记录系统的集成 - 与持续集成服务器的集成 - 使用 {% data variables.product.prodname_enterprise_api %} 的外部脚本或软件 @@ -40,7 +40,7 @@ To thoroughly test {% data variables.product.product_name %} and recreate an env 1. 使用 {% data variables.product.prodname_enterprise_backup_utilities %} 执行生产实例备份。 更多信息请参阅“[在设备上配置备份](/enterprise/admin/guides/installation/configuring-backups-on-your-appliance#about-github-enterprise-server-backup-utilities)”的“关于 {% data variables.product.prodname_enterprise_backup_utilities %} ”部分。 2. 设置新实例作为暂存环境。 配置和安装暂存实例的方法与生产实例所用方法相同。 更多信息请参阅“[设置 {% data variables.product.prodname_ghe_server %} 实例](/enterprise/admin/guides/installation/setting-up-a-github-enterprise-server-instance/)”。 -3. Optionally, if you plan to test {% data variables.product.prodname_actions %} functionality in your test environment, review the considerations for your logs and storage. For more information, see "[Using a staging environment](/admin/github-actions/advanced-configuration-and-troubleshooting/using-a-staging-environment)." +3. (可选)如果计划在测试环境中测试 {% data variables.product.prodname_actions %} 功能,请查看日志和存储的注意事项。 更多信息请参阅“[使用暂存环境](/admin/github-actions/advanced-configuration-and-troubleshooting/using-a-staging-environment)”。 4. 在暂存实例上还原备份。 更多信息请参阅“[在设备上配置备份](/enterprise/admin/guides/installation/configuring-backups-on-your-appliance#restoring-a-backup)”的“还原备份”部分。 ## 延伸阅读 diff --git a/translations/zh-CN/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise.md b/translations/zh-CN/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise.md index b825d70c13..cab8073c92 100644 --- a/translations/zh-CN/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise.md +++ b/translations/zh-CN/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise.md @@ -1,8 +1,8 @@ --- -title: 企业的审核日志事件 -intro: 了解为企业记录的审核日志事件。 -shortTitle: 审核日志事件 -permissions: 'Enterprise owners {% ifversion ghes %}and site administrators {% endif %}can interact with the audit log.' +title: Audit log events for your enterprise +intro: Learn about audit log events recorded for your enterprise. +shortTitle: Audit log events +permissions: Enterprise owners {% ifversion ghes %}and site administrators {% endif %}can interact with the audit log. miniTocMaxHeadingLevel: 4 redirect_from: - /enterprise/admin/articles/audited-actions @@ -23,112 +23,126 @@ topics: --- {%- ifversion fpt or ghec %} -### `account` 类操作 +### `account` category actions -| 操作 | 描述 | -| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `account.billing_plan_change` | 组织的结算周期已更改。 更多信息请参阅“[更改计费周期的持续时间](/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle)”。 | -| `account.plan_change` | 组织的订阅已更改。 更多信息请参阅“[关于 GitHub 帐户的计费](/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts)”。 | -| `account.pending_plan_change` | 组织所有者或帐单管理员取消或降级了付费订阅。 更多信息请参阅“[升级或降低对结算过程有何影响?](/billing/managing-billing-for-your-github-account/how-does-upgrading-or-downgrading-affect-the-billing-process)” | -| `account.pending_subscription_change` | {% data variables.product.prodname_marketplace %} 免费试用版已开始或已过期。 更多信息请参阅“[关于 GitHub Marketplace 的计费](/billing/managing-billing-for-github-marketplace-apps/about-billing-for-github-marketplace)”。 | +| Action | Description +|--------|------------- +| `account.billing_plan_change` | An organization's billing cycle changed. For more information, see "[Changing the duration of your billing cycle](/billing/managing-your-github-billing-settings/changing-the-duration-of-your-billing-cycle)." +| `account.plan_change` | An organization's subscription changed. For more information, see "[About billing for GitHub accounts](/billing/managing-billing-for-your-github-account/about-billing-for-github-accounts)." +| `account.pending_plan_change` | An organization owner or billing manager canceled or downgraded a paid subscription. For more information, see "[How does upgrading or downgrading affect the billing process?](/billing/managing-billing-for-your-github-account/how-does-upgrading-or-downgrading-affect-the-billing-process)." +| `account.pending_subscription_change` | A {% data variables.product.prodname_marketplace %} free trial started or expired. For more information, see "[About billing for GitHub Marketplace](/billing/managing-billing-for-github-marketplace-apps/about-billing-for-github-marketplace)." {%- endif %} {%- ifversion fpt or ghec %} -### `advisory_credit` 类操作 +### `advisory_credit` category actions -| 操作 | 描述 | -| ------------------------- | ------------------------------------------------------------------------------------------------------- | -| `advisory_credit.accept` | 有人接受了安全通告的信用。 更多信息请参阅“[编辑安全通告](/github/managing-security-vulnerabilities/editing-a-security-advisory)”。 | -| `advisory_credit.create` | 安全通告的管理员将某人添加到信用部分。 | -| `advisory_credit.decline` | 有人拒绝了安全通告的信用。 | -| `advisory_credit.destroy` | The administrator of a security advisory removed someone from the credit section. | +| Action | Description +|--------|------------- +| `advisory_credit.accept` | Someone accepted credit for a security advisory. For more information, see "[Editing a security advisory](/github/managing-security-vulnerabilities/editing-a-security-advisory)." +| `advisory_credit.create` | The administrator of a security advisory added someone to the credit section. +| `advisory_credit.decline` | Someone declined credit for a security advisory. +| `advisory_credit.destroy` | The administrator of a security advisory removed someone from the credit section. {%- endif %} -### `artifact` 类操作 +### `artifact` category actions -| 操作 | 描述 | -| ------------------ | -------------- | -| `artifact.destroy` | 工作流程运行构件已手动删除。 | +| Action | Description +|--------|------------- +| `artifact.destroy` | A workflow run artifact was manually deleted. {%- ifversion ghec %} -### `audit_log_streaming` 类操作 +### `audit_log_streaming` category actions -| 操作 | 描述 | -| ----------------------------- | ---------------------------- | -| `audit_log_streaming.check` | 已对为审核日志流配置的端点执行手动检查。 | -| `audit_log_streaming.create` | 为审核日志流式处理添加了一个端点。 | -| `audit_log_streaming.update` | 已针对审核日志流更新端点配置,例如流已暂停、启用或禁用。 | -| `audit_log_streaming.destroy` | 已删除审核日志流式处理端点。 | +| Action | Description +|--------|------------- +| `audit_log_streaming.check` | A manual check was performed of the endpoint configured for audit log streaming. +| `audit_log_streaming.create` | An endpoint was added for audit log streaming. +| `audit_log_streaming.update` | An endpoint configuration was updated for audit log streaming, such as the stream was paused, enabled, or disabled. +| `audit_log_streaming.destroy` | An audit log streaming endpoint was deleted. {%- endif %} {%- ifversion fpt or ghec %} -### `billing` 类操作 +### `billing` category actions -| 操作 | 描述 | -| ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `billing.change_billing_type` | 组织改变了它支付 {% data variables.product.prodname_dotcom %} 的方式。 更多信息请参阅“[添加或编辑付款方式](/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method)”。 | -| `billing.change_email` | 组织的帐单电子邮件地址已更改。 更多信息请参阅“[设置帐单邮箱](/billing/managing-your-github-billing-settings/setting-your-billing-email)”。 | +| Action | Description +|--------|------------- +| `billing.change_billing_type` | An organization changed how it paid for {% data variables.product.prodname_dotcom %}. For more information, see "[Adding or editing a payment method](/billing/managing-your-github-billing-settings/adding-or-editing-a-payment-method)." +| `billing.change_email` | An organization's billing email address changed. For more information, see "[Setting your billing email](/billing/managing-your-github-billing-settings/setting-your-billing-email)." {%- endif %} -### `business` 类操作 +### `business` category actions -| 操作 | 描述 | -| -------------------- | --------------------------------------------------- | -| `business.add_admin` | 企业所有者{% ifversion ghes %} 或站点管理员{% endif %} 已添加到企业。 | +| Action | Description +|--------|------------- +| `business.add_admin` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} was added to an enterprise. {%- ifversion ghec %} -| `business.add_billing_manager` | 向企业添加了帐单管理员。 +| `business.add_billing_manager` | A billing manager was added to an enterprise. {%- endif %} -| `business.add_organization` | 向企业添加了组织。 +| `business.add_organization` | An organization was added to an enterprise. {%- ifversion ghec %} -| `business.add_support_entitlee` | 向企业成员添加了支持权利。 更多信息请参阅“[管理企业的支持权利](/admin/user-management/managing-users-in-your-enterprise/managing-support-entitlements-for-your-enterprise)”。 +| `business.add_support_entitlee` | A support entitlement was added to a member of an enterprise. For more information, see "[Managing support entitlements for your enterprise](/admin/user-management/managing-users-in-your-enterprise/managing-support-entitlements-for-your-enterprise)." {%- endif %} {%- ifversion ghes > 3.0 or ghae %} -| `business.advanced_security_policy_update` |企业所有者{% ifversion ghes %} 或站点管理员{% endif %} 创建、更新或删除了 {% data variables.product.prodname_GH_advanced_security %} 的策略。 更多信息请参阅“[在企业中执行 {% data variables.product.prodname_advanced_security %} 的策略](/admin/policies/enforcing-policies-for-advanced-security-in-your-enterprise)”。 +| `business.advanced_security_policy_update` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} created, updated, or removed a policy for {% data variables.product.prodname_GH_advanced_security %}. For more information, see "[Enforcing policies for {% data variables.product.prodname_advanced_security %} in your enterprise](/admin/policies/enforcing-policies-for-advanced-security-in-your-enterprise)." {%- endif %} {%- ifversion ghec %} -| `business.cancel_admin_invitation` | 取消邀请某人成为企业所有者{% ifversion ghes %} 或站点管理员{% endif %}。 | `business.cancel_billing_manager_invitation` | 取消邀请某人担任企业的帐单管理员。 +| `business.cancel_admin_invitation` | An invitation for someone to be an owner{% ifversion ghes %} or site administrator{% endif %} of an enterprise was canceled. +| `business.cancel_billing_manager_invitation` | An invitation for someone to be an billing manager of an enterprise was canceled. {%- endif %} {%- ifversion ghes %} -| `business.clear_actions_settings` | 企业所有者或站点管理员清除了企业的 {% data variables.product.prodname_actions %} 策略设置。 更多信息请参阅“[在企业中实施 GitHub Actions 的策略](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise)”。 +| `business.clear_actions_settings` | An enterprise owner or site administrator cleared {% data variables.product.prodname_actions %} policy settings for an enterprise. For more information, see "[Enforcing policies for GitHub Actions in your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise)." {%- endif %} -| `business.clear_default_repository_permission` | 企业所有者{% ifversion ghes %} 或站点管理员{% endif %} 清除了企业的基本存储库权限策略设置。 更多信息请参阅“[实施基本存储库权限的策略](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-base-repository-permissions)”。 | `business.clear_members_can_create_repos` |企业所有者{% ifversion ghes %} 或站点管理员{% endif %} 清除了对企业中组织中存储库创建的限制。 更多信息请参阅“[在企业中实施仓库管理策略](/admin/policies/enforcing-repository-management-policies-in-your-enterprise#setting-a-policy-for-repository-creation)”。 | `business.create` | 企业已创建。 +| `business.clear_default_repository_permission` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} cleared the base repository permission policy setting for an enterprise. For more information, see "[Enforcing a policy for base repository permissions](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-base-repository-permissions)." +| `business.clear_members_can_create_repos` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} cleared a restriction on repository creation in organizations in the enterprise. For more information, see "[Enforcing repository management policies in your enterprise](/admin/policies/enforcing-repository-management-policies-in-your-enterprise#setting-a-policy-for-repository-creation)." +| `business.create` | An enterprise was created. {%- ifversion ghec %} -| `business.disable_saml` | 已对企业禁用 SAML 单点登录。 +| `business.disable_saml` | SAML single sign-on was disabled for an enterprise. {%- endif %} -| `business.disable_two_factor_requirement` | 已禁用对成员启用双重身份验证以访问企业的要求。 +| `business.disable_two_factor_requirement` | The requirement for members to have two-factor authentication enabled to access an enterprise was disabled. {%- ifversion ghec %} -| `business.enable_saml` | 已为企业启用 SAML 单点登录。 +| `business.enable_saml` | SAML single sign-on was enabled for an enterprise. {%- endif %} | `business.enable_two_factor_requirement` | The requirement for members to have two-factor authentication enabled to access an enterprise was enabled. {%- ifversion ghec %} -| `business.enterprise_server_license_download` | A {% data variables.product.prodname_ghe_server %} license was downloaded. | `business.import_license_usage` | License usage information was imported from a {% data variables.product.prodname_ghe_server %} instance to an enterprise account on {% data variables.product.prodname_dotcom_the_website %}. | `business.invite_admin` | An invitation for someone to be an enterprise owner{% ifversion ghes %} or site administrator{% endif %} of an enterprise was sent. | `business.invite_billing_manager` | An invitation for someone to be an billing manager of an enterprise was sent. +| `business.enterprise_server_license_download` | A {% data variables.product.prodname_ghe_server %} license was downloaded. +| `business.import_license_usage` | License usage information was imported from a {% data variables.product.prodname_ghe_server %} instance to an enterprise account on {% data variables.product.prodname_dotcom_the_website %}. +| `business.invite_admin` | An invitation for someone to be an enterprise owner{% ifversion ghes %} or site administrator{% endif %} of an enterprise was sent. +| `business.invite_billing_manager` | An invitation for someone to be an billing manager of an enterprise was sent. {%- endif %} -| `business.members_can_update_protected_branches.clear` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} unset a policy for whether members of an enterprise can update protected branches on repositories for individual organizations. Organization administrators can choose whether to allow updating protected branches settings. | `business.members_can_update_protected_branches.disable` | The ability for enterprise members to update branch protection rules was disabled. Only enterprise owners can update protected branches. | `business.members_can_update_protected_branches.enable` | The ability for enterprise members to update branch protection rules was enabled. Enterprise owners and members can update protected branches. | `business.remove_admin` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} was removed from an enterprise. +| `business.members_can_update_protected_branches.clear` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} unset a policy for whether members of an enterprise can update protected branches on repositories for individual organizations. Organization administrators can choose whether to allow updating protected branches settings. +| `business.members_can_update_protected_branches.disable` | The ability for enterprise members to update branch protection rules was disabled. Only enterprise owners can update protected branches. +| `business.members_can_update_protected_branches.enable` | The ability for enterprise members to update branch protection rules was enabled. Enterprise owners and members can update protected branches. +| `business.remove_admin` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} was removed from an enterprise. {%- ifversion ghes > 3.1 %} -| `business.referrer_override_enable` | An enterprise owner or site administrator enabled the referrer policy override. 更多信息请参阅“[配置企业的推荐策略](/admin/configuration/configuring-your-enterprise/configuring-the-referrer-policy-for-your-enterprise)”。 | `business.referrer_override_disable` | An enterprise owner or site administrator disabled the referrer policy override. 更多信息请参阅“[配置企业的推荐策略](/admin/configuration/configuring-your-enterprise/configuring-the-referrer-policy-for-your-enterprise)”。 +| `business.referrer_override_enable` | An enterprise owner or site administrator enabled the referrer policy override. For more information, see "[Configuring the referrer policy for your enterprise](/admin/configuration/configuring-your-enterprise/configuring-the-referrer-policy-for-your-enterprise)." +| `business.referrer_override_disable` | An enterprise owner or site administrator disabled the referrer policy override. For more information, see "[Configuring the referrer policy for your enterprise](/admin/configuration/configuring-your-enterprise/configuring-the-referrer-policy-for-your-enterprise)." {%- endif %} {%- ifversion ghec %} -| `business.remove_billing_manager` | A billing manager was removed from an enterprise. | `business.remove_member` | A member was removed from an enterprise. +| `business.remove_billing_manager` | A billing manager was removed from an enterprise. +| `business.remove_member` | A member was removed from an enterprise. {%- endif %} | `business.remove_organization` | An organization was removed from an enterprise. {%- ifversion ghec %} -| `business.remove_support_entitlee` | A support entitlement was removed from a member of an enterprise. 更多信息请参阅“[管理企业的支持权利](/admin/user-management/managing-users-in-your-enterprise/managing-support-entitlements-for-your-enterprise)”。 +| `business.remove_support_entitlee` | A support entitlement was removed from a member of an enterprise. For more information, see "[Managing support entitlements for your enterprise](/admin/user-management/managing-users-in-your-enterprise/managing-support-entitlements-for-your-enterprise)." {%- endif %} | `business.rename_slug` | The slug for the enterprise URL was renamed. {%- ifversion ghec %} -| `business.revoke_external_identity` | The external identity for a member in an enterprise was revoked. | `business.revoke_sso_session` | The SAML single sign-on session for a member in an enterprise was revoked. +| `business.revoke_external_identity` | The external identity for a member in an enterprise was revoked. +| `business.revoke_sso_session` | The SAML single sign-on session for a member in an enterprise was revoked. {%- endif %} {%- ifversion ghec %} -| `business.set_actions_fork_pr_approvals_policy` | The setting for requiring approvals for workflows from public forks was changed for an enterprise. 更多信息请参阅“[在企业中执行 {% data variables.product.prodname_actions %} 的策略](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-fork-pull-requests-in-your-enterprise)”。 +| `business.set_actions_fork_pr_approvals_policy` | The setting for requiring approvals for workflows from public forks was changed for an enterprise. For more information, see "[Enforcing policies for {% data variables.product.prodname_actions %} in your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-fork-pull-requests-in-your-enterprise)." {%- endif %} | `business.set_actions_retention_limit` | The retention period for {% data variables.product.prodname_actions %} artifacts and logs was changed for an enterprise. For more information, see "[Enforcing policies for {% data variables.product.prodname_actions %} in an enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-artifact-and-log-retention-in-your-enterprise)." {%- ifversion ghec or ghes %} | `business.set_fork_pr_workflows_policy` | The policy for workflows on private repository forks was changed. For more information, see "{% ifversion ghec %}[Enforcing policies for {% data variables.product.prodname_actions %} in an enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise#enforcing-a-policy-for-fork-pull-requests-in-private-repositories){% else ifversion ghes > 2.22 %}[Enabling workflows for private repository forks](/admin/github-actions/enabling-github-actions-for-github-enterprise-server/enforcing-github-actions-policies-for-your-enterprise#enabling-workflows-for-private-repository-forks){% endif %}." {%- endif %} {%- ifversion ghes %} -| `business.update_actions_settings` | An enterprise owner or site administrator updated {% data variables.product.prodname_actions %} policy settings for an enterprise. 更多信息请参阅“[在企业中实施 GitHub Actions 的策略](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise)”。 +| `business.update_actions_settings` | An enterprise owner or site administrator updated {% data variables.product.prodname_actions %} policy settings for an enterprise. For more information, see "[Enforcing policies for GitHub Actions in your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-github-actions-in-your-enterprise)." {%- endif %} -| `business.update_default_repository_permission` | The base repository permission setting was updated for all organizations in an enterprise. 更多信息请参阅“[实施基本存储库权限的策略](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-base-repository-permissions)”。 | `business.update_member_repository_creation_permission` | The repository creation setting was updated for an enterprise. For more information, see "[Enforcing a policy for repository creation](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-creation)." | `business.update_member_repository_invitation_permission` | The policy setting for enterprise members inviting outside collaborators to repositories was updated. For more information, see "[Enforcing a policy for inviting outside collaborators to repositories](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-inviting-outside-collaborators-to-repositories)." +| `business.update_default_repository_permission` | The base repository permission setting was updated for all organizations in an enterprise. For more information, see "[Enforcing a policy for base repository permissions](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-base-repository-permissions)." +| `business.update_member_repository_creation_permission` | The repository creation setting was updated for an enterprise. For more information, see "[Enforcing a policy for repository creation](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-creation)." +| `business.update_member_repository_invitation_permission` | The policy setting for enterprise members inviting outside collaborators to repositories was updated. For more information, see "[Enforcing a policy for inviting outside collaborators to repositories](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-inviting-outside-collaborators-to-repositories)." {%- ifversion ghec %} | `business.update_saml_provider_settings` | The SAML single sign-on provider settings for an enterprise were updated. {%- endif %} @@ -136,467 +150,499 @@ topics: {%- if secret-scanning-audit-log-custom-patterns %} ### `business_secret_scanning_custom_pattern` category actions -| 操作 | 描述 | -| -- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| | `business_secret_scanning_custom_pattern.create` | An enterprise-level custom pattern is published for secret scanning. 更多信息请参阅“[定义机密扫描的自定义模式](/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-enterprise-account)”。 | -| | `business_secret_scanning_custom_pattern.delete` | An enterprise-level custom pattern is removed from secret scanning. | -| | `business_secret_scanning_custom_pattern.update` | Changes to an enterprise-level custom pattern are saved for secret scanning. | +Action | Description +----------------------------- | ----------------------------------------------- +| `business_secret_scanning_custom_pattern.create` | An enterprise-level custom pattern is published for secret scanning. For more information, see "[Defining custom patterns for secret scanning](/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-enterprise-account)." +| `business_secret_scanning_custom_pattern.delete` | An enterprise-level custom pattern is removed from secret scanning. +| `business_secret_scanning_custom_pattern.update` | Changes to an enterprise-level custom pattern are saved for secret scanning. {%- endif %} ### `checks` category actions -| 操作 | 描述 | -| ------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `checks.auto_trigger_disabled` | Automatic creation of check suites was disabled on a repository in the organization or enterprise. For more information, see "[Update repository preferences for check suites](/rest/reference/checks#update-repository-preferences-for-check-suites)." | -| `checks.auto_trigger_enabled` | Automatic creation of check suites was enabled on a repository in the organization or enterprise. For more information, see "[Update repository preferences for check suites](/rest/reference/checks#update-repository-preferences-for-check-suites)." | +| Action | Description +|--------|------------- +| `checks.auto_trigger_disabled` | Automatic creation of check suites was disabled on a repository in the organization or enterprise. For more information, see "[Update repository preferences for check suites](/rest/reference/checks#update-repository-preferences-for-check-suites)." +| `checks.auto_trigger_enabled` | Automatic creation of check suites was enabled on a repository in the organization or enterprise. For more information, see "[Update repository preferences for check suites](/rest/reference/checks#update-repository-preferences-for-check-suites)." {%- ifversion fpt or ghec %} | `checks.delete_logs` | Logs in a check suite were deleted. {%- endif %} {%- ifversion fpt or ghec %} -### `codespaces` 类操作 +### `codespaces` category actions -| 操作 | 描述 | -| ---------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `codespaces.connect` | A codespace was started. | -| `codespaces.create` | A user [created a codespace](/github/developing-online-with-codespaces/creating-a-codespace). | -| `codespaces.destroy` | A user [deleted a codespace](/github/developing-online-with-codespaces/deleting-a-codespace). | -| `codespaces.allow_permissions` | A codespace using custom permissions from its `devcontainer.json` file was launched. | -| `codespaces.attempted_to_create_from_prebuild` | An attempt to create a codespace from a prebuild was made. | -| `codespaces.create_an_org_secret` | A user created an organization-level [secret for {% data variables.product.prodname_codespaces %}](/github/developing-online-with-codespaces/managing-encrypted-secrets-for-codespaces#about-encrypted-secrets-for-codespaces) | -| `codespaces.update_an_org_secret` | A user updated an organization-level [secret for {% data variables.product.prodname_codespaces %}](/github/developing-online-with-codespaces/managing-encrypted-secrets-for-codespaces#about-encrypted-secrets-for-codespaces). | -| `codespaces.remove_an_org_secret` | A user removed an organization-level [secret for {% data variables.product.prodname_codespaces %}](/github/developing-online-with-codespaces/managing-encrypted-secrets-for-codespaces#about-encrypted-secrets-for-codespaces). | -| `codespaces.manage_access_and_security` | A user updated [which repositories a codespace can access](/github/developing-online-with-codespaces/managing-access-and-security-for-codespaces). | +| Action | Description +|--------|------------- +| `codespaces.connect` | A codespace was started. +| `codespaces.create` | A user [created a codespace](/github/developing-online-with-codespaces/creating-a-codespace). +| `codespaces.destroy` | A user [deleted a codespace](/github/developing-online-with-codespaces/deleting-a-codespace). +| `codespaces.allow_permissions` | A codespace using custom permissions from its `devcontainer.json` file was launched. +| `codespaces.attempted_to_create_from_prebuild` | An attempt to create a codespace from a prebuild was made. +| `codespaces.create_an_org_secret` | A user created an organization-level [secret for {% data variables.product.prodname_codespaces %}](/github/developing-online-with-codespaces/managing-encrypted-secrets-for-codespaces#about-encrypted-secrets-for-codespaces) +| `codespaces.update_an_org_secret` | A user updated an organization-level [secret for {% data variables.product.prodname_codespaces %}](/github/developing-online-with-codespaces/managing-encrypted-secrets-for-codespaces#about-encrypted-secrets-for-codespaces). +| `codespaces.remove_an_org_secret` | A user removed an organization-level [secret for {% data variables.product.prodname_codespaces %}](/github/developing-online-with-codespaces/managing-encrypted-secrets-for-codespaces#about-encrypted-secrets-for-codespaces). +| `codespaces.manage_access_and_security` | A user updated [which repositories a codespace can access](/github/developing-online-with-codespaces/managing-access-and-security-for-codespaces). {%- endif %} {%- ifversion fpt or ghec %} ### `commit_comment` category actions -| 操作 | 描述 | -| ------------------------ | ----------------------------- | -| `commit_comment.destroy` | A commit comment was deleted. | -| `commit_comment.update` | A commit comment was updated. | +| Action | Description +|--------|------------- +| `commit_comment.destroy` | A commit comment was deleted. +| `commit_comment.update` | A commit comment was updated. {%- endif %} {%- ifversion ghes %} ### `config_entry` category actions -| 操作 | 描述 | -| ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `config_entry.create` | A configuration setting was created. These events are only visible in the site admin audit log. The type of events recorded relate to:
- Enterprise settings and policies
- Organization and repository permissions and settings
- Git, Git LFS, {% data variables.product.prodname_github_connect %}, {% data variables.product.prodname_registry %}, project, and code security settings. | -| `config_entry.destroy` | A configuration setting was deleted. These events are only visible in the site admin audit log. The type of events recorded relate to:
- Enterprise settings and policies
- Organization and repository permissions and settings
- Git, Git LFS, {% data variables.product.prodname_github_connect %}, {% data variables.product.prodname_registry %}, project, and code security settings. | -| `config_entry.update` | A configuration setting was edited. These events are only visible in the site admin audit log. The type of events recorded relate to:
- Enterprise settings and policies
- Organization and repository permissions and settings
- Git, Git LFS, {% data variables.product.prodname_github_connect %}, {% data variables.product.prodname_registry %}, project, and code security settings. | +| Action | Description +|--------|------------- +| `config_entry.create` | A configuration setting was created. These events are only visible in the site admin audit log. The type of events recorded relate to:
- Enterprise settings and policies
- Organization and repository permissions and settings
- Git, Git LFS, {% data variables.product.prodname_github_connect %}, {% data variables.product.prodname_registry %}, project, and code security settings. +| `config_entry.destroy` | A configuration setting was deleted. These events are only visible in the site admin audit log. The type of events recorded relate to:
- Enterprise settings and policies
- Organization and repository permissions and settings
- Git, Git LFS, {% data variables.product.prodname_github_connect %}, {% data variables.product.prodname_registry %}, project, and code security settings. +| `config_entry.update` | A configuration setting was edited. These events are only visible in the site admin audit log. The type of events recorded relate to:
- Enterprise settings and policies
- Organization and repository permissions and settings
- Git, Git LFS, {% data variables.product.prodname_github_connect %}, {% data variables.product.prodname_registry %}, project, and code security settings. {%- endif %} {%- ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4864 %} -### `dependabot_alerts` 类操作 +### `dependabot_alerts` category actions -| 操作 | 描述 | -| --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `dependabot_alerts.disable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled {% data variables.product.prodname_dependabot_alerts %} for all existing {% ifversion fpt or ghec %}private {% endif %}repositories. 更多信息请参阅“[管理组织的安全和分析设置](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)”。 | -| `dependabot_alerts.enable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled {% data variables.product.prodname_dependabot_alerts %} for all existing {% ifversion fpt or ghec %}private {% endif %}repositories. | +| Action | Description +|--------|------------- +| `dependabot_alerts.disable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled {% data variables.product.prodname_dependabot_alerts %} for all existing {% ifversion fpt or ghec %}private {% endif %}repositories. For more information, see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)." +| `dependabot_alerts.enable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled {% data variables.product.prodname_dependabot_alerts %} for all existing {% ifversion fpt or ghec %}private {% endif %}repositories. -### `dependabot_alerts_new_repos` 类操作 +### `dependabot_alerts_new_repos` category actions -| 操作 | 描述 | -| ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `dependabot_alerts_new_repos.disable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled {% data variables.product.prodname_dependabot_alerts %} for all new {% ifversion fpt or ghec %}private {% endif %}repositories. 更多信息请参阅“[管理组织的安全和分析设置](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)”。 | -| `dependabot_alerts_new_repos.enable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled {% data variables.product.prodname_dependabot_alerts %} for all new {% ifversion fpt or ghec %}private {% endif %}repositories. | +| Action | Description +|--------|------------- +| `dependabot_alerts_new_repos.disable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled {% data variables.product.prodname_dependabot_alerts %} for all new {% ifversion fpt or ghec %}private {% endif %}repositories. For more information, see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)." +| `dependabot_alerts_new_repos.enable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled {% data variables.product.prodname_dependabot_alerts %} for all new {% ifversion fpt or ghec %}private {% endif %}repositories. ### `dependabot_repository_access`category actions -| 操作 | 描述 | -| --------------------------------------------------- | ----------------------------------------------------------------------------------------------- | -| `dependabot_repository_access.repositories_updated` | The repositories that {% data variables.product.prodname_dependabot %} can access were updated. | +| Action | Description +|--------|------------- +| `dependabot_repository_access.repositories_updated` | The repositories that {% data variables.product.prodname_dependabot %} can access were updated. {%- endif %} {%- ifversion fpt or ghec or ghes > 3.2 %} -### `dependabot_security_updates` 类操作 +### `dependabot_security_updates` category actions -| 操作 | 描述 | -| ------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `dependabot_security_updates.disable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled {% data variables.product.prodname_dependabot_security_updates %} for all existing repositories. 更多信息请参阅“[管理组织的安全和分析设置](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)”。 | -| `dependabot_security_updates.enable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled {% data variables.product.prodname_dependabot_security_updates %} for all existing repositories. | +| Action | Description +|--------|------------- +| `dependabot_security_updates.disable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled {% data variables.product.prodname_dependabot_security_updates %} for all existing repositories. For more information, see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)." +| `dependabot_security_updates.enable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled {% data variables.product.prodname_dependabot_security_updates %} for all existing repositories. -### `dependabot_security_updates_new_repos` 类操作 +### `dependabot_security_updates_new_repos` category actions -| 操作 | 描述 | -| ----------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `dependabot_security_updates_new_repos.disable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled {% data variables.product.prodname_dependabot_security_updates %} for all new repositories. 更多信息请参阅“[管理组织的安全和分析设置](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)”。 | -| `dependabot_security_updates_new_repos.enable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled {% data variables.product.prodname_dependabot_security_updates %} for all new repositories. | +| Action | Description +|--------|------------- +| `dependabot_security_updates_new_repos.disable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled {% data variables.product.prodname_dependabot_security_updates %} for all new repositories. For more information, see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)." +| `dependabot_security_updates_new_repos.enable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled {% data variables.product.prodname_dependabot_security_updates %} for all new repositories. {%- endif %} {%- ifversion fpt or ghec or ghes or ghae-issue-4864 %} -### `dependency_graph` 类操作 +### `dependency_graph` category actions -| 操作 | 描述 | -| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `dependency_graph.disable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled the dependency graph for all existing repositories. 更多信息请参阅“[管理组织的安全和分析设置](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)”。 | -| `dependency_graph.enable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled the dependency graph for all existing repositories. | +| Action | Description +|--------|------------- +| `dependency_graph.disable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled the dependency graph for all existing repositories. For more information, see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)." +| `dependency_graph.enable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled the dependency graph for all existing repositories. -### `dependency_graph_new_repos` 类操作 +### `dependency_graph_new_repos` category actions -| 操作 | 描述 | -| ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `dependency_graph_new_repos.disable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled the dependency graph for all new repositories. 更多信息请参阅“[管理组织的安全和分析设置](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)”。 | -| `dependency_graph_new_repos.enable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled the dependency graph for all new repositories. | +| Action | Description +|--------|------------- +| `dependency_graph_new_repos.disable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled the dependency graph for all new repositories. For more information, see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)." +| `dependency_graph_new_repos.enable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled the dependency graph for all new repositories. {%- endif %} {%- ifversion fpt or ghec %} ### `discussion` category actions -| 操作 | 描述 | -| -------------------- | ------------------------------ | -| `discussion.destroy` | A team discussion was deleted. | +| Action | Description +|--------|------------- +| `discussion.destroy` | A team discussion was deleted. ### `discussion_comment` category actions -| 操作 | 描述 | -| ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `discussion_comment.destroy` | A [comment on a team discussion post was deleted](/communities/moderating-comments-and-conversations/managing-disruptive-comments#deleting-a-comment). | -| `discussion_comment.update` | A [comment on a team discussion post was edited](/communities/moderating-comments-and-conversations/managing-disruptive-comments#editing-a-comment). | +| Action | Description +|--------|------------- +| `discussion_comment.destroy` | A [comment on a team discussion post was deleted](/communities/moderating-comments-and-conversations/managing-disruptive-comments#deleting-a-comment). +| `discussion_comment.update` | A [comment on a team discussion post was edited](/communities/moderating-comments-and-conversations/managing-disruptive-comments#editing-a-comment). -### `discussion_post` 类操作 +### `discussion_post` category actions -| 操作 | 描述 | -| ------------------------- | ------------------------------------------------------------------------------------------------------------------------ | -| `discussion_post.destroy` | A [team discussion post was deleted](/organizations/collaborating-with-your-team/editing-or-deleting-a-team-discussion). | -| `discussion_post.update` | A [team discussion post was edited](/organizations/collaborating-with-your-team/editing-or-deleting-a-team-discussion). | +| Action | Description +|--------|------------- +| `discussion_post.destroy` | A [team discussion post was deleted](/organizations/collaborating-with-your-team/editing-or-deleting-a-team-discussion). +| `discussion_post.update` | A [team discussion post was edited](/organizations/collaborating-with-your-team/editing-or-deleting-a-team-discussion). -### `discussion_post_reply` 类操作 +### `discussion_post_reply` category actions -| 操作 | 描述 | -| ------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- | -| `discussion_post_reply.destroy` | A [reply to a team discussion post was deleted](/communities/moderating-comments-and-conversations/managing-disruptive-comments#deleting-a-comment). | -| `discussion_post_reply.update` | A [reply to a team discussion post was edited](/communities/moderating-comments-and-conversations/managing-disruptive-comments#editing-a-comment). | +| Action | Description +|--------|------------- +| `discussion_post_reply.destroy` | A [reply to a team discussion post was deleted](/communities/moderating-comments-and-conversations/managing-disruptive-comments#deleting-a-comment). +| `discussion_post_reply.update` | A [reply to a team discussion post was edited](/communities/moderating-comments-and-conversations/managing-disruptive-comments#editing-a-comment). {%- endif %} {%- ifversion ghec or ghes %} ### `dotcom_connection` category actions -| 操作 | 描述 | -| ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `dotcom_connection.create` | A {% data variables.product.prodname_github_connect %} connection to {% data variables.product.prodname_dotcom_the_website %} was created. | -| `dotcom_connection.destroy` | A {% data variables.product.prodname_github_connect %} connection to {% data variables.product.prodname_dotcom_the_website %} was deleted. | -| `dotcom_connection.token_updated` | The {% data variables.product.prodname_github_connect %} connection token for {% data variables.product.prodname_dotcom_the_website %} was updated. | -| `dotcom_connection.upload_license_usage` | {% data variables.product.prodname_ghe_server %} license usage was manually uploaded to {% data variables.product.prodname_ghe_cloud %}. | -| `dotcom_connection.upload_usage_metrics` | {% data variables.product.prodname_ghe_server %} usage metrics were uploaded to {% data variables.product.prodname_dotcom_the_website %}. | +| Action | Description +|--------|------------- +| `dotcom_connection.create` | A {% data variables.product.prodname_github_connect %} connection to {% data variables.product.prodname_dotcom_the_website %} was created. +| `dotcom_connection.destroy` | A {% data variables.product.prodname_github_connect %} connection to {% data variables.product.prodname_dotcom_the_website %} was deleted. +| `dotcom_connection.token_updated` | The {% data variables.product.prodname_github_connect %} connection token for {% data variables.product.prodname_dotcom_the_website %} was updated. +| `dotcom_connection.upload_license_usage` | {% data variables.product.prodname_ghe_server %} license usage was manually uploaded to {% data variables.product.prodname_ghe_cloud %}. +| `dotcom_connection.upload_usage_metrics` | {% data variables.product.prodname_ghe_server %} usage metrics were uploaded to {% data variables.product.prodname_dotcom_the_website %}. {%- endif %} -### `enterprise` 类别操作 +### `enterprise` category actions -| 操作 | 描述 | -| ------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `enterprise.config.disable_anonymous_git_access` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled anonymous Git read access for repositories in the enterprise. 更多信息请参阅“[在企业中实施仓库管理策略](/admin/policies/enforcing-repository-management-policies-in-your-enterprise#configuring-anonymous-git-read-access)”。 | -| `enterprise.config.enable_anonymous_git_access` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled anonymous Git read access for repositories in the enterprise. 更多信息请参阅“[在企业中实施仓库管理策略](/admin/policies/enforcing-repository-management-policies-in-your-enterprise#configuring-anonymous-git-read-access)”。 | -| `enterprise.config.lock_anonymous_git_access` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} locked anonymous Git read access to prevent repository admins from changing existing anonymous Git read access settings for repositories in the enterprise. 更多信息请参阅“[在企业中实施仓库管理策略](/admin/policies/enforcing-repository-management-policies-in-your-enterprise#configuring-anonymous-git-read-access)”。 | -| `enterprise.config.unlock_anonymous_git_access` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} unlocked anonymous Git read access to allow repository admins to change existing anonymous Git read access settings for repositories in the enterprise. 更多信息请参阅“[在企业中实施仓库管理策略](/admin/policies/enforcing-repository-management-policies-in-your-enterprise#configuring-anonymous-git-read-access)”。 | -| `enterprise.register_self_hosted_runner` | A new {% data variables.product.prodname_actions %} self-hosted runner was registered. 更多信息请参阅“[将自托管运行器添加到仓库](/actions/hosting-your-own-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository)”。 | -| `enterprise.remove_self_hosted_runner` | A {% data variables.product.prodname_actions %} self-hosted runner was removed. 更多信息请参阅“[从仓库移除运行器](/actions/hosting-your-own-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository)”。 | -| `enterprise.runner_group_created` | A {% data variables.product.prodname_actions %} self-hosted runner group was created. 更多信息请参阅“[为组织创建自托管运行器组](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#creating-a-self-hosted-runner-group-for-an-organization)”。 | -| `enterprise.runner_group_removed` | A {% data variables.product.prodname_actions %} self-hosted runner group was removed. 更多信息请参阅“[移除自托管运行器组](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#removing-a-self-hosted-runner-group)”。 | -| `enterprise.runner_group_renamed` | A {% data variables.product.prodname_actions %} self-hosted runner group was renamed. 更多信息请参阅“[更改自托管运行器组的访问策略](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group)”。 | -| `enterprise.runner_group_updated` | The configuration of a {% data variables.product.prodname_actions %} self-hosted runner group was changed. 更多信息请参阅“[更改自托管运行器组的访问策略](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group)”。 | -| `enterprise.runner_group_runner_removed` | The REST API was used to remove a {% data variables.product.prodname_actions %} self-hosted runner from a group. 更多信息请参阅“[为组织从组中删除自托管运行器](/rest/reference/actions#remove-a-self-hosted-runner-from-a-group-for-an-organization)”。 | -| `enterprise.runner_group_runners_added` | A {% data variables.product.prodname_actions %} self-hosted runner was added to a group. 更多信息请参阅“[将自托管运行器移动到组](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group)”。 | -| `enterprise.runner_group_runners_updated` | A {% data variables.product.prodname_actions %} runner group's list of members was updated. 更多信息请参阅“[为组织设置组中的自托管运行器](/rest/reference/actions#set-self-hosted-runners-in-a-group-for-an-organization)”。 | +| Action | Description +|--------|------------- +| `enterprise.config.disable_anonymous_git_access` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled anonymous Git read access for repositories in the enterprise. For more information, see "[Enforcing repository management policies in your enterprise](/admin/policies/enforcing-repository-management-policies-in-your-enterprise#configuring-anonymous-git-read-access)." +| `enterprise.config.enable_anonymous_git_access` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled anonymous Git read access for repositories in the enterprise. For more information, see "[Enforcing repository management policies in your enterprise](/admin/policies/enforcing-repository-management-policies-in-your-enterprise#configuring-anonymous-git-read-access)." +| `enterprise.config.lock_anonymous_git_access` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} locked anonymous Git read access to prevent repository admins from changing existing anonymous Git read access settings for repositories in the enterprise. For more information, see "[Enforcing repository management policies in your enterprise](/admin/policies/enforcing-repository-management-policies-in-your-enterprise#configuring-anonymous-git-read-access)." +| `enterprise.config.unlock_anonymous_git_access` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} unlocked anonymous Git read access to allow repository admins to change existing anonymous Git read access settings for repositories in the enterprise. For more information, see "[Enforcing repository management policies in your enterprise](/admin/policies/enforcing-repository-management-policies-in-your-enterprise#configuring-anonymous-git-read-access)." +| `enterprise.register_self_hosted_runner` | A new {% data variables.product.prodname_actions %} self-hosted runner was registered. For more information, see "[Adding a self-hosted runner to a repository](/actions/hosting-your-own-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository)." +| `enterprise.remove_self_hosted_runner` | A {% data variables.product.prodname_actions %} self-hosted runner was removed. For more information, see "[Removing a runner from a repository](/actions/hosting-your-own-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository)." +| `enterprise.runner_group_created` | A {% data variables.product.prodname_actions %} self-hosted runner group was created. For more information, see "[Creating a self-hosted runner group for an organization](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#creating-a-self-hosted-runner-group-for-an-organization)." +| `enterprise.runner_group_removed` | A {% data variables.product.prodname_actions %} self-hosted runner group was removed. For more information, see "[Removing a self-hosted runner group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#removing-a-self-hosted-runner-group)." +| `enterprise.runner_group_renamed` | A {% data variables.product.prodname_actions %} self-hosted runner group was renamed. For more information, see "[Changing the access policy of a self-hosted runner group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group)." +| `enterprise.runner_group_updated` | The configuration of a {% data variables.product.prodname_actions %} self-hosted runner group was changed. For more information, see "[Changing the access policy of a self-hosted runner group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group)." +| `enterprise.runner_group_runner_removed` | The REST API was used to remove a {% data variables.product.prodname_actions %} self-hosted runner from a group. For more information, see "[Remove a self-hosted runner from a group for an organization](/rest/reference/actions#remove-a-self-hosted-runner-from-a-group-for-an-organization)." +| `enterprise.runner_group_runners_added` | A {% data variables.product.prodname_actions %} self-hosted runner was added to a group. For more information, see [Moving a self-hosted runner to a group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group). +| `enterprise.runner_group_runners_updated`| A {% data variables.product.prodname_actions %} runner group's list of members was updated. For more information, see "[Set self-hosted runners in a group for an organization](/rest/reference/actions#set-self-hosted-runners-in-a-group-for-an-organization)." {%- ifversion ghec %} | `enterprise.runner_group_visiblity_updated` | The visibility of a {% data variables.product.prodname_actions %} self-hosted runner group was updated via the REST API. For more information, see "[Update a self-hosted runner group for an organization](/rest/reference/actions#update-a-self-hosted-runner-group-for-an-organization)." {%- endif %} {%- ifversion ghec or ghes > 3.1 or ghae %} -| `enterprise.self_hosted_runner_online` | The {% data variables.product.prodname_actions %} runner application was started. 只能使用 REST API 查看;在 UI 或 JSON/CSV 导出中不可见。 更多信息请参阅“[检查自托管运行器的状态](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)”。 | `enterprise.self_hosted_runner_offline` | The {% data variables.product.prodname_actions %} runner application was stopped. 只能使用 REST API 查看;在 UI 或 JSON/CSV 导出中不可见。 更多信息请参阅“[检查自托管运行器的状态](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)”。 +| `enterprise.self_hosted_runner_online` | The {% data variables.product.prodname_actions %} runner application was started. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)." +| `enterprise.self_hosted_runner_offline` | The {% data variables.product.prodname_actions %} runner application was stopped. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)." {%- endif %} {%- ifversion ghec or ghes %} -| `enterprise.self_hosted_runner_updated` | The {% data variables.product.prodname_actions %} runner application was updated. 可以使用 REST API 和 UI 查看;在 JSON /CSV 导出中不可见。 更多信息请参阅“[关于自托管运行器](/actions/hosting-your-own-runners/about-self-hosted-runners#about-self-hosted-runners)”。 +| `enterprise.self_hosted_runner_updated` | The {% data variables.product.prodname_actions %} runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export. For more information, see "[About self-hosted runners](/actions/hosting-your-own-runners/about-self-hosted-runners#about-self-hosted-runners)." {%- endif %} {%- ifversion ghec %} ### `enterprise_domain` category actions -| 操作 | 描述 | -| --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `enterprise_domain.approve` | An enterprise domain was approved for an enterprise. For more information, see "[Approving a domain for your enterprise account](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#approving-a-domain-for-your-enterprise-account)." | -| `enterprise_domain.create` | An enterprise domain was added to an enterprise. For more information, see "[Verifying a domain for your enterprise account](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#verifying-a-domain-for-your-enterprise-account)." | -| `enterprise_domain.destroy` | An enterprise domain was removed from an enterprise. For more information, see "[Removing an approved or verified domain](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#removing-an-approved-or-verified-domain)." | -| `enterprise_domain.verify` | An enterprise domain was verified for an enterprise. For more information, see "[Verifying a domain for your enterprise account](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#verifying-a-domain-for-your-enterprise-account)." | +| Action | Description +|--------|------------- +| `enterprise_domain.approve` | An enterprise domain was approved for an enterprise. For more information, see "[Approving a domain for your enterprise account](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#approving-a-domain-for-your-enterprise-account)." +| `enterprise_domain.create` | An enterprise domain was added to an enterprise. For more information, see "[Verifying a domain for your enterprise account](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#verifying-a-domain-for-your-enterprise-account)." +| `enterprise_domain.destroy` | An enterprise domain was removed from an enterprise. For more information, see "[Removing an approved or verified domain](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#removing-an-approved-or-verified-domain)." +| `enterprise_domain.verify` | An enterprise domain was verified for an enterprise. For more information, see "[Verifying a domain for your enterprise account](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise#verifying-a-domain-for-your-enterprise-account)." ### `enterprise_installation` category actions -| 操作 | 描述 | -| --------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `enterprise_installation.create` | The {% data variables.product.prodname_github_app %} associated with an {% data variables.product.prodname_github_connect %} enterprise connection was created. | -| `enterprise_installation.destroy` | The {% data variables.product.prodname_github_app %} associated with an {% data variables.product.prodname_github_connect %} enterprise connection was deleted. | -| `enterprise_installation.token_updated` | The token belonging to {% data variables.product.prodname_github_app %} associated with an {% data variables.product.prodname_github_connect %} enterprise connection was updated. | +| Action | Description +|--------|------------- +| `enterprise_installation.create` | The {% data variables.product.prodname_github_app %} associated with an {% data variables.product.prodname_github_connect %} enterprise connection was created. +| `enterprise_installation.destroy` | The {% data variables.product.prodname_github_app %} associated with an {% data variables.product.prodname_github_connect %} enterprise connection was deleted. +| `enterprise_installation.token_updated` | The token belonging to {% data variables.product.prodname_github_app %} associated with an {% data variables.product.prodname_github_connect %} enterprise connection was updated. {%- endif %} {%- ifversion fpt or ghec %} -### `environment` 类别操作 +### `environment` category actions -| 操作 | 描述 | -| ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `environment.add_protection_rule` | A {% data variables.product.prodname_actions %} environment protection rule was created via the API. For more information, see "[Environment protection rules](/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-protection-rules)." | -| `environment.create_actions_secret` | A secret was created for a {% data variables.product.prodname_actions %} environment via the API. For more information, see "[Environment secrets](/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets)." | -| `environment.delete` | An environment was deleted via the API. For more information, see "[Deleting an environment](/actions/deployment/targeting-different-environments/using-environments-for-deployment#deleting-an-environment)." | -| `environment.remove_actions_secret` | A secret was deleted for a {% data variables.product.prodname_actions %} environment via the API. For more information, see "[Environment secrets](/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets)." | -| `environment.remove_protection_rule` | A {% data variables.product.prodname_actions %} environment protection rule was deleted via the API. For more information, see "[Environment protection rules](/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-protection-rules)." | -| `environment.update_actions_secret` | A secret was updated for a {% data variables.product.prodname_actions %} environment via the API. For more information, see "[Environment secrets](/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets)." | -| `environment.update_protection_rule` | A {% data variables.product.prodname_actions %} environment protection rule was updated via the API. For more information, see "[Environment protection rules](/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-protection-rules)." | +| Action | Description +|--------|------------- +| `environment.add_protection_rule` | A {% data variables.product.prodname_actions %} environment protection rule was created via the API. For more information, see "[Environment protection rules](/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-protection-rules)." +| `environment.create_actions_secret` | A secret was created for a {% data variables.product.prodname_actions %} environment via the API. For more information, see "[Environment secrets](/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets)." +| `environment.delete` | An environment was deleted via the API. For more information, see "[Deleting an environment](/actions/deployment/targeting-different-environments/using-environments-for-deployment#deleting-an-environment)." +| `environment.remove_actions_secret` | A secret was deleted for a {% data variables.product.prodname_actions %} environment via the API. For more information, see "[Environment secrets](/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets)." +| `environment.remove_protection_rule` | A {% data variables.product.prodname_actions %} environment protection rule was deleted via the API. For more information, see "[Environment protection rules](/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-protection-rules)." +| `environment.update_actions_secret` | A secret was updated for a {% data variables.product.prodname_actions %} environment via the API. For more information, see "[Environment secrets](/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-secrets)." +| `environment.update_protection_rule` | A {% data variables.product.prodname_actions %} environment protection rule was updated via the API. For more information, see "[Environment protection rules](/actions/deployment/targeting-different-environments/using-environments-for-deployment#environment-protection-rules)." {%- endif %} {%- ifversion ghae %} -### `external_group` 类操作 +### `external_group` category actions -| 操作 | 描述 | -| -------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `external_group.delete` | An Okta group was deleted. 更多信息请参阅“[将 Okta 组映射到团队](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)”。 | -| `external_group.link` | An Okta group was mapped to a {% data variables.product.prodname_ghe_managed %} team. 更多信息请参阅“[将 Okta 组映射到团队](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)”。 | -| `external_group.provision` | An Okta group was mapped to a team on {% data variables.product.prodname_ghe_managed %}. 更多信息请参阅“[将 Okta 组映射到团队](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)”。 | -| `external_group.unlink` | An Okta group was unmapped from a {% data variables.product.prodname_ghe_managed %} team. 更多信息请参阅“[将 Okta 组映射到团队](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)”。 | -| `external_group.update` | An Okta group's settings were updated. 更多信息请参阅“[将 Okta 组映射到团队](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)”。 | +| Action | Description +|--------|------------- +| `external_group.delete` | An Okta group was deleted. For more information, see "[Mapping Okta groups to teams](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)." +| `external_group.link` | An Okta group was mapped to a {% data variables.product.prodname_ghe_managed %} team. For more information, see "[Mapping Okta groups to teams](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)." +| `external_group.provision` | An Okta group was mapped to a team on {% data variables.product.prodname_ghe_managed %}. For more information, see "[Mapping Okta groups to teams](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)." +| `external_group.unlink` | An Okta group was unmapped from a {% data variables.product.prodname_ghe_managed %} team. For more information, see "[Mapping Okta groups to teams](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)." +| `external_group.update` | An Okta group's settings were updated. For more information, see "[Mapping Okta groups to teams](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)." -### `external_identity` 类操作 -| 操作 | 描述 | -| ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `external_identity.deprovision` | A user was removed from an Okta group and was subsequently deprovisioned from {% data variables.product.prodname_ghe_managed %}. 更多信息请参阅“[将 Okta 组映射到团队](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)”。 | -| `external_identity.provision` | An Okta user was added to an Okta group and was subsequently provisioned to the mapped team on {% data variables.product.prodname_ghe_managed %}. 更多信息请参阅“[将 Okta 组映射到团队](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)”。 | -| `external_identity.update` | An Okta user's settings were updated. 更多信息请参阅“[将 Okta 组映射到团队](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)”。 | +### `external_identity` category actions +| Action | Description +|--------|------------- +| `external_identity.deprovision` | A user was removed from an Okta group and was subsequently deprovisioned from {% data variables.product.prodname_ghe_managed %}. For more information, see "[Mapping Okta groups to teams](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)." +| `external_identity.provision` | An Okta user was added to an Okta group and was subsequently provisioned to the mapped team on {% data variables.product.prodname_ghe_managed %}. For more information, see "[Mapping Okta groups to teams](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)." +| `external_identity.update` | An Okta user's settings were updated. For more information, see "[Mapping Okta groups to teams](/admin/identity-and-access-management/configuring-authentication-and-provisioning-with-your-identity-provider/mapping-okta-groups-to-teams)." {%- endif %} ### `gist` category actions -| 操作 | 描述 | -| ------------------------ | ------------------------------------ | -| `gist.create` | A gist is created. | -| `gist.destroy` | A gist is deleted. | -| `gist.visibility_change` | The visibility of a gist is changed. | +| Action | Description +|--------|------------- +| `gist.create` | A gist is created. +| `gist.destroy` | A gist is deleted. +| `gist.visibility_change` | The visibility of a gist is changed. {% ifversion ghec or ghes > 3.4 or ghae-issue-6724 %} -### `git` 类操作 +### `git` category actions -| 操作 | 描述 | -| ----------- | --------------------------------------- | -| `git.clone` | A repository was cloned. | -| `git.fetch` | Changes were fetched from a repository. | -| `git.push` | Changes were pushed to a repository. | +| Action | Description +|--------|------------- +| `git.clone` | A repository was cloned. +| `git.fetch` | Changes were fetched from a repository. +| `git.push` | Changes were pushed to a repository. {% endif %} -### `hook` 类操作 +### `hook` category actions -| 操作 | 描述 | -| -- | -- | -| | | +| Action | Description +|--------|------------- {%- ifversion ghes or ghae %} | `hook.active_changed` | A hook's active status was updated. {%- endif %} -| `hook.config_changed` | A hook's configuration was changed. | `hook.create` | A new hook was added. | `hook.destroy` | A hook was deleted. | `hook.events_changed` | A hook's configured events were changed. +| `hook.config_changed` | A hook's configuration was changed. +| `hook.create` | A new hook was added. +| `hook.destroy` | A hook was deleted. +| `hook.events_changed` | A hook's configured events were changed. ### `integration` category actions -| 操作 | 描述 | -| ---------------------------------- | ---------------------------------------------------------------------------------------- | -| `integration.create` | An integration was created. | -| `integration.destroy` | An integration was deleted. | -| `integration.manager_added` | A member of an enterprise or organization was added as an integration manager. | -| `integration.manager_removed` | A member of an enterprise or organization was removed from being an integration manager. | -| `integration.transfer` | Ownership of an integration was transferred to another user or organization. | -| `integration.remove_client_secret` | A client secret for an integration was removed. | -| `integration.revoke_all_tokens` | All user tokens for an integration were requested to be revoked. | -| `integration.revoke_tokens` | Token(s) for an integration were revoked. | +| Action | Description +|--------|------------- +| `integration.create` | An integration was created. +| `integration.destroy` | An integration was deleted. +| `integration.manager_added` | A member of an enterprise or organization was added as an integration manager. +| `integration.manager_removed` | A member of an enterprise or organization was removed from being an integration manager. +| `integration.transfer` | Ownership of an integration was transferred to another user or organization. +| `integration.remove_client_secret` | A client secret for an integration was removed. +| `integration.revoke_all_tokens` | All user tokens for an integration were requested to be revoked. +| `integration.revoke_tokens` | Token(s) for an integration were revoked. ### `integration_installation`category actions -| 操作 | 描述 | -| ------------------------------------------------ | ----------------------------------------------- | -| `integration_installation.contact_email_changed` | A contact email for an integration was changed. | -| `integration_installation.create` | An integration was installed. | -| `integration_installation.destroy` | An integration was uninstalled. | -| `integration_installation.repositories_added` | Repositories were added to an integration. | -| `integration_installation.repositories_removed` | Repositories were removed from an integration. | +| Action | Description +|--------|------------- +| `integration_installation.contact_email_changed` | A contact email for an integration was changed. +| `integration_installation.create` | An integration was installed. +| `integration_installation.destroy` | An integration was uninstalled. +| `integration_installation.repositories_added` | Repositories were added to an integration. +| `integration_installation.repositories_removed` | Repositories were removed from an integration. {%- ifversion fpt or ghec %} -| `integration_installation.suspend` | An integration was suspended. | `integration_installation.unsuspend` | An integration was unsuspended. +| `integration_installation.suspend` | An integration was suspended. +| `integration_installation.unsuspend` | An integration was unsuspended. {%- endif %} | `integration_installation.version_updated` | Permissions for an integration were updated. -### `integration_installation_request` 类操作 +### `integration_installation_request` category actions -| 操作 | 描述 | -| ----------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `integration_installation_request.create` | An member requested that an owner install an integration for use in an enterprise or organization. | -| `integration_installation_request.close` | A request to install an integration for use in an enterprise or organization was either approved or denied by an owner, or canceled by the member who opened the request. | +| Action | Description +|--------|------------- +| `integration_installation_request.create` | An member requested that an owner install an integration for use in an enterprise or organization. +| `integration_installation_request.close` | A request to install an integration for use in an enterprise or organization was either approved or denied by an owner, or canceled by the member who opened the request. {%- ifversion ghec or ghae %} -### `ip_allow_list` 类操作 +### `ip_allow_list` category actions -| 操作 | 描述 | -| ------------------------------------------ | --------------------------------------------------------------------- | -| `ip_allow_list.enable` | IP 允许列表已启用。 | -| `ip_allow_list.enable_for_installed_apps` | 已为安装的 {% data variables.product.prodname_github_apps %} 启用 IP 允许列表。 | -| `ip_allow_list.disable` | IP 允许列表已禁用。 | -| `ip_allow_list.disable_for_installed_apps` | 已为安装的 {% data variables.product.prodname_github_apps %} 禁用 IP 允许列表。 | +| Action | Description +|--------|------------- +| `ip_allow_list.enable` | An IP allow list was enabled. +| `ip_allow_list.enable_for_installed_apps` | An IP allow list was enabled for installed {% data variables.product.prodname_github_apps %}. +| `ip_allow_list.disable` | An IP allow list was disabled. +| `ip_allow_list.disable_for_installed_apps` | An IP allow list was disabled for installed {% data variables.product.prodname_github_apps %}. -### `ip_allow_list_entry` 类操作 +### `ip_allow_list_entry` category actions -| 操作 | 描述 | -| ----------------------------- | ------------------- | -| `ip_allow_list_entry.create` | IP 地址已添加到 IP 允许列表中。 | -| `ip_allow_list_entry.update` | IP 地址或描述已更改。 | -| `ip_allow_list_entry.destroy` | IP 地址已从 IP 允许列表中删除。 | +| Action | Description +|--------|------------- +| `ip_allow_list_entry.create` | An IP address was added to an IP allow list. +| `ip_allow_list_entry.update` | An IP address or its description was changed. +| `ip_allow_list_entry.destroy` | An IP address was deleted from an IP allow list. {%- endif %} -### `issue` 类操作 +### `issue` category actions -| 操作 | 描述 | -| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `issue.destroy` | 已从仓库中删除问题。 更多信息请参阅“[删除议题](/issues/tracking-your-work-with-issues/deleting-an-issue)”。 | -| `issue.pinned` | An issue was pinned to a repository. 更多信息请参阅“[将议题固定到仓库](/issues/tracking-your-work-with-issues/pinning-an-issue-to-your-repository)”。 | -| `issue.transfer` | An issue was transferred to another repository. 更多信息请参阅“[将议题转让给其他仓库](/issues/tracking-your-work-with-issues/transferring-an-issue-to-another-repository)”。 | -| `issue.unpinned` | An issue was unpinned from a repository. 更多信息请参阅“[将议题固定到仓库](/issues/tracking-your-work-with-issues/pinning-an-issue-to-your-repository)”。 | +| Action | Description +|--------|------------- +| `issue.destroy` | An issue was deleted from the repository. For more information, see "[Deleting an issue](/issues/tracking-your-work-with-issues/deleting-an-issue)." +| `issue.pinned` | An issue was pinned to a repository. For more information, see "[Pinning an issue to your repository](/issues/tracking-your-work-with-issues/pinning-an-issue-to-your-repository)." +| `issue.transfer` | An issue was transferred to another repository. For more information, see "[Transferring an issue to another repository](/issues/tracking-your-work-with-issues/transferring-an-issue-to-another-repository)." +| `issue.unpinned` | An issue was unpinned from a repository. For more information, see "[Pinning an issue to your repository](/issues/tracking-your-work-with-issues/pinning-an-issue-to-your-repository)." ### `issue_comment` category actions -| 操作 | 描述 | -| ------------------------ | ------------------------------------------------------ | -| `issue_comment.destroy` | A comment on an issue was deleted from the repository. | -| `issue_comment.pinned` | A comment on an issue was pinned to a repository. | -| `issue_comment.unpinned` | A comment on an issue was unpinned from a repository. | -| `issue_comment.update` | 已更改问题的正文文本(初始注释)。 | +| Action | Description +|--------|------------- +| `issue_comment.destroy` | A comment on an issue was deleted from the repository. +| `issue_comment.pinned` | A comment on an issue was pinned to a repository. +| `issue_comment.unpinned` | A comment on an issue was unpinned from a repository. +| `issue_comment.update` | A comment on an issue (other than the initial one) changed. ### `issues` category actions -| 操作 | 描述 | -| ------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `issues.deletes_disabled` | The ability for enterprise members to delete issues was disabled. Members cannot delete issues in any organizations in an enterprise. For more information, see "[Enforcing a policy for deleting issues](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-deleting-issues)." | -| `issues.deletes_enabled` | The ability for enterprise members to delete issues was enabled. Members can delete issues in any organizations in an enterprise. For more information, see "[Enforcing a policy for deleting issues](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-deleting-issues)." | -| `issues.deletes_policy_cleared` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} cleared the policy setting for allowing members to delete issues in an enterprise. For more information, see "[Enforcing a policy for deleting issues](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-deleting-issues)." | +| Action | Description +|--------|------------- +| `issues.deletes_disabled` | The ability for enterprise members to delete issues was disabled. Members cannot delete issues in any organizations in an enterprise. For more information, see "[Enforcing a policy for deleting issues](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-deleting-issues)." +| `issues.deletes_enabled` | The ability for enterprise members to delete issues was enabled. Members can delete issues in any organizations in an enterprise. For more information, see "[Enforcing a policy for deleting issues](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-deleting-issues)." +| `issues.deletes_policy_cleared` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} cleared the policy setting for allowing members to delete issues in an enterprise. For more information, see "[Enforcing a policy for deleting issues](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-deleting-issues)." {%- ifversion fpt or ghec %} -### `marketplace_agreement_signature` 类操作 +### `marketplace_agreement_signature` category actions -| 操作 | 描述 | -| ---------------------------------------- | --------------------------------------------------------------------------------------------------------------------- | -| `marketplace_agreement_signature.create` | A user signed the {% data variables.product.prodname_marketplace %} Developer Agreement on behalf of an organization. | +| Action | Description +|--------|------------- +| `marketplace_agreement_signature.create` | A user signed the {% data variables.product.prodname_marketplace %} Developer Agreement on behalf of an organization. -### `marketplace_listing` 类操作 +### `marketplace_listing` category actions -| 操作 | 描述 | -| ------------------------------------- | ----------------------------------------------------------------------------------------------------- | -| `marketplace_listing.approve` | A listing was approved for inclusion in {% data variables.product.prodname_marketplace %}. | -| `marketplace_listing.change_category` | A category for a listing for an app in {% data variables.product.prodname_marketplace %} was changed. | -| `marketplace_listing.create` | A listing for an app in {% data variables.product.prodname_marketplace %} was created. | -| `marketplace_listing.delist` | A listing was removed from {% data variables.product.prodname_marketplace %}. | -| `marketplace_listing.redraft` | A listing was sent back to draft state. | -| `marketplace_listing.reject` | A listing was not accepted for inclusion in {% data variables.product.prodname_marketplace %}. | +| Action | Description +|--------|------------- +| `marketplace_listing.approve` | A listing was approved for inclusion in {% data variables.product.prodname_marketplace %}. +| `marketplace_listing.change_category` | A category for a listing for an app in {% data variables.product.prodname_marketplace %} was changed. +| `marketplace_listing.create` | A listing for an app in {% data variables.product.prodname_marketplace %} was created. +| `marketplace_listing.delist` | A listing was removed from {% data variables.product.prodname_marketplace %}. +| `marketplace_listing.redraft` | A listing was sent back to draft state. +| `marketplace_listing.reject` | A listing was not accepted for inclusion in {% data variables.product.prodname_marketplace %}. {%- endif %} -### `members_can_create_pages` 类操作 +### `members_can_create_pages` category actions -| 操作 | 描述 | -| ---------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `members_can_create_pages.disable` | The ability for members to publish {% data variables.product.prodname_pages %} was disabled. Members cannot publish {% data variables.product.prodname_pages %} in an organization. For more information, see "[Managing the publication of GitHub Pages sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." | -| `members_can_create_pages.enable` | The ability for members to publish {% data variables.product.prodname_pages %} was enabled. Members can publish {% data variables.product.prodname_pages %} in an organization. For more information, see "[Managing the publication of GitHub Pages sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." | +| Action | Description +|--------|------------- +| `members_can_create_pages.disable` | The ability for members to publish {% data variables.product.prodname_pages %} was disabled. Members cannot publish {% data variables.product.prodname_pages %} in an organization. For more information, see "[Managing the publication of GitHub Pages sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." +| `members_can_create_pages.enable` | The ability for members to publish {% data variables.product.prodname_pages %} was enabled. Members can publish {% data variables.product.prodname_pages %} in an organization. For more information, see "[Managing the publication of GitHub Pages sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." ### `members_can_create_private_pages` category actions -| 操作 | 描述 | -| ------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `members_can_create_private_pages.disable` | The ability for members to publish private {% data variables.product.prodname_pages %} was disabled. Members cannot publish private {% data variables.product.prodname_pages %} in an organization. For more information, see "[Managing the publication of GitHub Pages sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." | -| `members_can_create_private_pages.enable` | The ability for members to publish private {% data variables.product.prodname_pages %} was enabled. Members can publish private {% data variables.product.prodname_pages %} in an organization. For more information, see "[Managing the publication of GitHub Pages sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." | +| Action | Description +|--------|------------- +| `members_can_create_private_pages.disable` | The ability for members to publish private {% data variables.product.prodname_pages %} was disabled. Members cannot publish private {% data variables.product.prodname_pages %} in an organization. For more information, see "[Managing the publication of GitHub Pages sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." +| `members_can_create_private_pages.enable` | The ability for members to publish private {% data variables.product.prodname_pages %} was enabled. Members can publish private {% data variables.product.prodname_pages %} in an organization. For more information, see "[Managing the publication of GitHub Pages sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." ### `members_can_create_public_pages` category actions -| 操作 | 描述 | -| ----------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `members_can_create_public_pages.disable` | The ability for members to publish public {% data variables.product.prodname_pages %} was disabled. Members cannot publish public {% data variables.product.prodname_pages %} in an organization. For more information, see "[Managing the publication of GitHub Pages sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." | -| `members_can_create_public_pages.enable` | The ability for members to publish public {% data variables.product.prodname_pages %} was enabled. Members can publish public {% data variables.product.prodname_pages %} in an organization. For more information, see "[Managing the publication of GitHub Pages sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." | +| Action | Description +|--------|------------- +| `members_can_create_public_pages.disable` | The ability for members to publish public {% data variables.product.prodname_pages %} was disabled. Members cannot publish public {% data variables.product.prodname_pages %} in an organization. For more information, see "[Managing the publication of GitHub Pages sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." +| `members_can_create_public_pages.enable` | The ability for members to publish public {% data variables.product.prodname_pages %} was enabled. Members can publish public {% data variables.product.prodname_pages %} in an organization. For more information, see "[Managing the publication of GitHub Pages sites for your organization](/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization)." {%- ifversion ghec or ghes or ghae %} ### `members_can_delete_repos` category actions -| 操作 | 描述 | -| ---------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `members_can_delete_repos.clear` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} cleared the policy setting for deleting or transfering repositories in any organizations in an enterprise. For more information, see "[Enforcing a policy for repository deletion and transfer](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-deletion-and-transfer)." | -| `members_can_delete_repos.disable` | The ability for enterprise members to delete repositories was disabled. Members cannot delete or transfer repositories in any organizations in an enterprise. For more information, see "[Enforcing a policy for repository deletion and transfer](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-deletion-and-transfer)." | -| `members_can_delete_repos.enable` | The ability for enterprise members to delete repositories was enabled. Members can delete or transfer repositories in any organizations in an enterprise. For more information, see "[Enforcing a policy for repository deletion and transfer](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-deletion-and-transfer)." | +| Action | Description +|--------|------------- +| `members_can_delete_repos.clear` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} cleared the policy setting for deleting or transfering repositories in any organizations in an enterprise. For more information, see "[Enforcing a policy for repository deletion and transfer](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-deletion-and-transfer)." +| `members_can_delete_repos.disable` | The ability for enterprise members to delete repositories was disabled. Members cannot delete or transfer repositories in any organizations in an enterprise. For more information, see "[Enforcing a policy for repository deletion and transfer](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-deletion-and-transfer)." +| `members_can_delete_repos.enable` | The ability for enterprise members to delete repositories was enabled. Members can delete or transfer repositories in any organizations in an enterprise. For more information, see "[Enforcing a policy for repository deletion and transfer](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-repository-deletion-and-transfer)." ### `members_can_view_dependency_insights` category actions -| 操作 | 描述 | -| ---------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `members_can_view_dependency_insights.clear` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} cleared the policy setting for viewing dependency insights in any organizations in an enterprise.{% ifversion ghec %} For more information, see "[Enforcing a policy for visibility of dependency insights](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise)."{% endif %} +| Action | Description +|--------|------------- +| `members_can_view_dependency_insights.clear` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} cleared the policy setting for viewing dependency insights in any organizations in an enterprise.{% ifversion ghec %} For more information, see "[Enforcing a policy for visibility of dependency insights](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise)."{% endif %} | `members_can_view_dependency_insights.disable` | The ability for enterprise members to view dependency insights was disabled. Members cannot view dependency insights in any organizations in an enterprise.{% ifversion ghec %} For more information, see "[Enforcing a policy for visibility of dependency insights](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise)."{% endif %} -| `members_can_view_dependency_insights.enable` | The ability for enterprise members to view dependency insights was enabled. Members can view dependency insights in any organizations in an enterprise.{% ifversion ghec %} For more information, see "[Enforcing a policy for visibility of dependency insights](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise)."{% endif %} +| `members_can_view_dependency_insights.enable` | The ability for enterprise members to view dependency insights was enabled. Members can view dependency insights in any organizations in an enterprise.{% ifversion ghec %} For more information, see "[Enforcing a policy for visibility of dependency insights](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-dependency-insights-in-your-enterprise)."{% endif %} ### `migration` category actions -| 操作 | 描述 | -| ------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `migration.create` | A migration file was created for transferring data from a *source* location (such as a {% data variables.product.prodname_dotcom_the_website %} organization or a {% data variables.product.prodname_ghe_server %} instance) to a *target* {% data variables.product.prodname_ghe_server %} instance. | -| `migration.destroy_file` | A migration file for transferring data from a *source* location (such as a {% data variables.product.prodname_dotcom_the_website %} organization or a {% data variables.product.prodname_ghe_server %} instance) to a *target* {% data variables.product.prodname_ghe_server %} instance was deleted. | -| `migration.download` | A migration file for transferring data from a *source* location (such as a {% data variables.product.prodname_dotcom_the_website %} organization or a {% data variables.product.prodname_ghe_server %} instance) to a *target* {% data variables.product.prodname_ghe_server %} instance was downloaded. | +| Action | Description +|--------|------------- +| `migration.create` | A migration file was created for transferring data from a *source* location (such as a {% data variables.product.prodname_dotcom_the_website %} organization or a {% data variables.product.prodname_ghe_server %} instance) to a *target* {% data variables.product.prodname_ghe_server %} instance. +| `migration.destroy_file` | A migration file for transferring data from a *source* location (such as a {% data variables.product.prodname_dotcom_the_website %} organization or a {% data variables.product.prodname_ghe_server %} instance) to a *target* {% data variables.product.prodname_ghe_server %} instance was deleted. +| `migration.download` | A migration file for transferring data from a *source* location (such as a {% data variables.product.prodname_dotcom_the_website %} organization or a {% data variables.product.prodname_ghe_server %} instance) to a *target* {% data variables.product.prodname_ghe_server %} instance was downloaded. {%- endif %} -### `oauth_access` 类操作 +### `oauth_access` category actions -| 操作 | 描述 | -| -- | -- | -| | | +| Action | Description +|--------|------------- +`oauth_access.create` | An [OAuth access token][] was generated for a user account. For more information, see "[Creating a personal access token](/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token)." +`oauth_access.destroy` | An [OAuth access token][] was deleted from a user account. + [OAuth access token]: /developers/apps/building-oauth-apps/authorizing-oauth-apps -`oauth_access.create` | An [OAuth access token][] was generated for a user account. 更多信息请参阅“[创建个人访问令牌](/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token)”。 `oauth_access.destroy` | An [OAuth access token][] was deleted from a user account. +### `oauth_application` category actions -### `oauth_application` 类操作 - -| 操作 | 描述 | -| --------------------------- | ------------------------------------------------------------------------ | -| `oauth_application.create` | An [OAuth application][] was created for a user or organization account. | -| `oauth_application.destroy` | 已从用户或组织帐户中删除 [OAuth 应用程序][]。 | +| Action | Description +|--------|------------- +| `oauth_application.create` | An [OAuth application][] was created for a user or organization account. +| `oauth_application.destroy` | An [OAuth application][] was deleted from a user or organization account. {%- ifversion fpt or ghec %} -| `oauth_application.generate_client_secret` | An [OAuth application][]'s secret key was generated. | `oauth_application.remove_client_secret` | An [OAuth application][]'s secret key was deleted. +| `oauth_application.generate_client_secret` | An [OAuth application][]'s secret key was generated. +| `oauth_application.remove_client_secret` | An [OAuth application][]'s secret key was deleted. {%- endif %} | `oauth_application.reset_secret` | An [OAuth application][]'s secret key was reset. {%- ifversion fpt or ghec %} | `oauth_application.revoke_all_tokens` | All user tokens for an [OAuth application][] were requested to be revoked. {%- endif %} -| `oauth_application.revoke_tokens` | Token(s) for an [OAuth application][] were revoked. | `oauth_application.transfer` | An [OAuth application][] was transferred from one user or organization account to another. +| `oauth_application.revoke_tokens` | Token(s) for an [OAuth application][] were revoked. +| `oauth_application.transfer` | An [OAuth application][] was transferred from one user or organization account to another. {%- ifversion ghes or ghae %} | `oauth_application.unsuspend` | An [OAuth application][] was unsuspended for a user or organization account. {%- endif %} -{%- ifversion fpt or ghec %} -### `oauth_authority` 类别操作 + [OAuth application]: /guides/basics-of-authentication/#registering-your-app -| 操作 | 描述 | -| ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `oauth_authorization.create` | An authorization for an OAuth application was created. 更多信息请参阅“[授权 OAuth 应用程序](/authentication/keeping-your-account-and-data-secure/authorizing-oauth-apps)”。 | -| `oauth_authorization.destroy` | An authorization for an OAuth application was deleted. 更多信息请参阅“[授权 OAuth 应用程序](/authentication/keeping-your-account-and-data-secure/authorizing-oauth-apps)”。 | -| `oauth_authorization.update` | An authorization for an OAuth application was updated. 更多信息请参阅“[授权 OAuth 应用程序](/authentication/keeping-your-account-and-data-secure/authorizing-oauth-apps)”。 | +{%- ifversion fpt or ghec %} +### `oauth_authorization` category actions + +| Action | Description +|--------|------------- +| `oauth_authorization.create` | An authorization for an OAuth application was created. For more information, see "[Authorizing OAuth Apps](/authentication/keeping-your-account-and-data-secure/authorizing-oauth-apps)." +| `oauth_authorization.destroy` | An authorization for an OAuth application was deleted. For more information, see "[Authorizing OAuth Apps](/authentication/keeping-your-account-and-data-secure/authorizing-oauth-apps)." +| `oauth_authorization.update` | An authorization for an OAuth application was updated. For more information, see "[Authorizing OAuth Apps](/authentication/keeping-your-account-and-data-secure/authorizing-oauth-apps)." {%- endif %} -### `org` 类操作 +### `org` category actions -| 操作 | 描述 | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- | -| `org.accept_business_invitation` | An invitation sent to an organization to join an enterprise was accepted. | -| {% ifversion ghec %}For more information, see "[Inviting an organization to join your enterprise account](/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account)."{% endif %} | | -| `org.add_billing_manager` | A billing manager was added to an organization. | -| {% ifversion fpt or ghec %}For more information, see "[Adding a billing manager to your organization](/organizations/managing-peoples-access-to-your-organization-with-roles/adding-a-billing-manager-to-your-organization)."{% endif %} | | -| `org.add_member` | A user joined an organization. | +| Action | Description +|--------|------------- +| `org.accept_business_invitation` | An invitation sent to an organization to join an enterprise was accepted. {% ifversion ghec %}For more information, see "[Inviting an organization to join your enterprise account](/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account)."{% endif %} +| `org.add_billing_manager` | A billing manager was added to an organization. {% ifversion fpt or ghec %}For more information, see "[Adding a billing manager to your organization](/organizations/managing-peoples-access-to-your-organization-with-roles/adding-a-billing-manager-to-your-organization)."{% endif %} +| `org.add_member` | A user joined an organization. {%- ifversion ghes > 3.0 or ghae or ghec %} -| `org.advanced_security_disabled_for_new_repos` | {% data variables.product.prodname_GH_advanced_security %} was disabled for new repositories in an organization. | `org.advanced_security_disabled_on_all_repos` | {% data variables.product.prodname_GH_advanced_security %} was disabled for all repositories in an organization. | `org.advanced_security_enabled_for_new_repos` | {% data variables.product.prodname_GH_advanced_security %} was enabled for new repositories in an organization. | `org.advanced_security_enabled_on_all_repos` | {% data variables.product.prodname_GH_advanced_security %} was enabled for all repositories in an organization. | `org.advanced_security_policy_selected_member_disabled` | An enterprise owner prevented {% data variables.product.prodname_GH_advanced_security %} features from being enabled for repositories owned by the organization. {% data reusables.advanced-security.more-information-about-enforcement-policy %} | `org.advanced_security_policy_selected_member_enabled` | An enterprise owner allowed {% data variables.product.prodname_GH_advanced_security %} features to be enabled for repositories owned by the organization. {% data reusables.advanced-security.more-information-about-enforcement-policy %} | `org.advanced_security_policy_update` | An organization owner updated polices for {% data variables.product.prodname_GH_advanced_security %} in an enterprise. {% data reusables.advanced-security.more-information-about-enforcement-policy %} +| `org.advanced_security_disabled_for_new_repos` | {% data variables.product.prodname_GH_advanced_security %} was disabled for new repositories in an organization. +| `org.advanced_security_disabled_on_all_repos` | {% data variables.product.prodname_GH_advanced_security %} was disabled for all repositories in an organization. +| `org.advanced_security_enabled_for_new_repos` | {% data variables.product.prodname_GH_advanced_security %} was enabled for new repositories in an organization. +| `org.advanced_security_enabled_on_all_repos` | {% data variables.product.prodname_GH_advanced_security %} was enabled for all repositories in an organization. +| `org.advanced_security_policy_selected_member_disabled` | An enterprise owner prevented {% data variables.product.prodname_GH_advanced_security %} features from being enabled for repositories owned by the organization. {% data reusables.advanced-security.more-information-about-enforcement-policy %} +| `org.advanced_security_policy_selected_member_enabled` | An enterprise owner allowed {% data variables.product.prodname_GH_advanced_security %} features to be enabled for repositories owned by the organization. {% data reusables.advanced-security.more-information-about-enforcement-policy %} +| `org.advanced_security_policy_update` | An organization owner updated polices for {% data variables.product.prodname_GH_advanced_security %} in an enterprise. {% data reusables.advanced-security.more-information-about-enforcement-policy %} {%- endif %} | `org.async_delete` | A user initiated a background job to delete an organization. {%- ifversion ghec %} -| `org.audit_log_export` | An organization owner created an export of the organization audit log. 如果导出包含查询,则日志将列出所使用的查询以及与该查询匹配的审核日志条目数量。 For more information, see "[Exporting audit log activity for your enterprise](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/exporting-audit-log-activity-for-your-enterprise)." +| `org.audit_log_export` | An organization owner created an export of the organization audit log. If the export included a query, the log will list the query used and the number of audit log entries matching that query. For more information, see "[Exporting audit log activity for your enterprise](/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/exporting-audit-log-activity-for-your-enterprise)." {%- endif %} -| `org.block_user` | An organization owner blocked a user from accessing the organization's repositories. |{% ifversion fpt or ghec %}For more information, see "[Blocking a user from your organization](/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization)."{% endif %}| | `org.cancel_business_invitation` | An invitation for an organization to join an enterprise was revoked. |{% ifversion ghec %}For more information, see "[Inviting an organization to join your enterprise account](/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account)."{% endif %}| | `org.cancel_invitation` | An invitation sent to a user to join an organization was revoked. | `org.clear_actions_settings` | An organization owner cleared {% data variables.product.prodname_actions %} policy settings for an organization. For more information, see "[Managing GitHub Actions permissions for your organization](/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#managing-github-actions-permissions-for-your-organization)." | `org.clear_default_repository_permission` | An organization owner cleared the base repository permission policy setting for an organization. For more information, see "[Setting base permissions](/organizations/managing-access-to-your-organizations-repositories/setting-base-permissions-for-an-organization#setting-base-permissions)." | `org.clear_member_team_creation_permission` | An organization owner cleared the new teams creation setting for an organization. 更多信息请参阅“[设置组织中的团队创建权限](/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization)”。 | `org.clear_reader_discussion_creation_permission` | An organization owner cleared the new discussion creation setting for an organization. |{% ifversion fpt or ghec %}For more information, see "[Allowing or disallowing users with read access to create discussions](/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization)."{% endif %}| | `org.clear_members_can_create_repos` | An organization owner cleared a restriction on repository creation in an organization. 更多信息请参阅“[限制在组织中创建仓库](/organizations/managing-organization-settings/restricting-repository-creation-in-your-organization)”。 | `org.clear_members_can_invite_outside_collaborators` | An organization owner cleared the outside collaborators invitation policy for an organization. 更多信息请参阅“[设置添加外部协作者的权限](/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators)”。. | `org.clear_new_repository_default_branch_setting` | An organization owner cleared the default branch name for new repositories setting for an organization. For more information, see "[Setting the default branch name](/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization#setting-the-default-branch-name)." +| `org.block_user` | An organization owner blocked a user from accessing the organization's repositories. {% ifversion fpt or ghec %}For more information, see "[Blocking a user from your organization](/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization)."{% endif %} +| `org.cancel_business_invitation` | An invitation for an organization to join an enterprise was revoked. {% ifversion ghec %}For more information, see "[Inviting an organization to join your enterprise account](/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account)."{% endif %} +| `org.cancel_invitation` | An invitation sent to a user to join an organization was revoked. +| `org.clear_actions_settings` | An organization owner cleared {% data variables.product.prodname_actions %} policy settings for an organization. For more information, see "[Managing GitHub Actions permissions for your organization](/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#managing-github-actions-permissions-for-your-organization)." +| `org.clear_default_repository_permission` | An organization owner cleared the base repository permission policy setting for an organization. For more information, see "[Setting base permissions](/organizations/managing-access-to-your-organizations-repositories/setting-base-permissions-for-an-organization#setting-base-permissions)." +| `org.clear_member_team_creation_permission` | An organization owner cleared the new teams creation setting for an organization. For more information, see "[Setting team creation permissions in your organization](/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization)." +| `org.clear_reader_discussion_creation_permission` | An organization owner cleared the new discussion creation setting for an organization. {% ifversion fpt or ghec %}For more information, see "[Allowing or disallowing users with read access to create discussions](/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization)."{% endif %} +| `org.clear_members_can_create_repos` | An organization owner cleared a restriction on repository creation in an organization. For more information, see "[Restricting repository creation in your organization](/organizations/managing-organization-settings/restricting-repository-creation-in-your-organization)." +| `org.clear_members_can_invite_outside_collaborators` | An organization owner cleared the outside collaborators invitation policy for an organization. For more information, see "[Setting permissions for adding outside collaborators](/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators)." +| `org.clear_new_repository_default_branch_setting` | An organization owner cleared the default branch name for new repositories setting for an organization. For more information, see "[Setting the default branch name](/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization#setting-the-default-branch-name)." {%- ifversion fpt or ghec %} -| `org.codespaces_trusted_repo_access_granted` | {% data variables.product.prodname_codespaces %} was granted trusted repository access to all other repositories in an organization. 更多信息请参阅“[管理组织的代码空间的存储库访问](/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces)”。 | `org.codespaces_trusted_repo_access_revoked` | {% data variables.product.prodname_codespaces %} trusted repository access to all other repositories in an organization was revoked. 更多信息请参阅“[管理组织的代码空间的存储库访问](/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces)”。 -{%- endif %} -| `org.config.disable_collaborators_only` | The interaction limit for collaborators only for an organization was disabled. |{% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.disable_contributors_only` | The interaction limit for prior contributors only for an organization was disabled. |{% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.disable_sockpuppet_disallowed` | The interaction limit for existing users only for an organization was disabled. |{% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.enable_collaborators_only` | The interaction limit for collaborators only for an organization was enabled. |{% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.enable_contributors_only` | The interaction limit for prior contributors only for an organization was enabled. |{% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.config.enable_sockpuppet_disallowed` | The interaction limit for existing users only for an organization was enabled. |{% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %}| | `org.confirm_business_invitation` | An invitation for an organization to join an enterprise was confirmed. |{% ifversion ghec %}For more information, see "[Inviting an organization to join your enterprise account](/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account)."{% endif %}| | `org.create` | An organization was created. 更多信息请参阅“[从头开始创建新组织](/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch)”。 +| `org.codespaces_trusted_repo_access_granted` | {% data variables.product.prodname_codespaces %} was granted trusted repository access to all other repositories in an organization. For more information, see "[Managing repository access for your organization's codespaces](/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces)." +| `org.codespaces_trusted_repo_access_revoked` | {% data variables.product.prodname_codespaces %} trusted repository access to all other repositories in an organization was revoked. For more information, see "[Managing repository access for your organization's codespaces](/codespaces/managing-codespaces-for-your-organization/managing-repository-access-for-your-organizations-codespaces)." +{%- endif %} | +| `org.config.disable_collaborators_only` | The interaction limit for collaborators only for an organization was disabled. {% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %} +| `org.config.disable_contributors_only` | The interaction limit for prior contributors only for an organization was disabled. {% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %} +| `org.config.disable_sockpuppet_disallowed` | The interaction limit for existing users only for an organization was disabled. {% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %} +| `org.config.enable_collaborators_only` | The interaction limit for collaborators only for an organization was enabled. {% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %} +| `org.config.enable_contributors_only` | The interaction limit for prior contributors only for an organization was enabled. {% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %} +| `org.config.enable_sockpuppet_disallowed` | The interaction limit for existing users only for an organization was enabled. {% ifversion fpt or ghec %}For more information, see "[Limiting interactions in your organization](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization#limiting-interactions-in-your-organization)."{% endif %} +| `org.confirm_business_invitation` | An invitation for an organization to join an enterprise was confirmed. {% ifversion ghec %}For more information, see "[Inviting an organization to join your enterprise account](/admin/user-management/managing-organizations-in-your-enterprise/adding-organizations-to-your-enterprise#inviting-an-organization-to-join-your-enterprise-account)."{% endif %} +| `org.create` | An organization was created. For more information, see "[Creating a new organization from scratch](/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch)." {%- ifversion fpt or ghec or ghes %} -| `org.create_actions_secret` | A {% data variables.product.prodname_actions %} secret was created for an organization. 更多信息请参阅“[为组织创建加密密码](/actions/reference/encrypted-secrets#creating-encrypted-secrets-for-an-organization)”。 +| `org.create_actions_secret` | A {% data variables.product.prodname_actions %} secret was created for an organization. For more information, see "[Creating encrypted secrets for an organization](/actions/reference/encrypted-secrets#creating-encrypted-secrets-for-an-organization)." {%- endif %} -| `org.create_integration_secret` | A {% data variables.product.prodname_dependabot %}{% ifversion fpt or ghec %} or {% data variables.product.prodname_codespaces %}{% endif %} integration secret was created for an organization. | `org.delete` | An organization was deleted by a user-initiated background job. | `org.disable_member_team_creation_permission` | An organization owner limited team creation to owners. 更多信息请参阅“[设置组织中的团队创建权限](/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization)”。 | `org.disable_reader_discussion_creation_permission` | An organization owner limited discussion creation to users with at least triage permission in an organization. {% ifversion fpt or ghec %}For more information, see "[Allowing or disallowing users with read access to create discussions](/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization)."{% endif %} +| `org.create_integration_secret` | A {% data variables.product.prodname_dependabot %}{% ifversion fpt or ghec %} or {% data variables.product.prodname_codespaces %}{% endif %} integration secret was created for an organization. +| `org.delete` | An organization was deleted by a user-initiated background job. +| `org.disable_member_team_creation_permission` | An organization owner limited team creation to owners. For more information, see "[Setting team creation permissions in your organization](/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization)." +| `org.disable_reader_discussion_creation_permission` | An organization owner limited discussion creation to users with at least triage permission in an organization. {% ifversion fpt or ghec %}For more information, see "[Allowing or disallowing users with read access to create discussions](/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization)."{% endif %} {%- ifversion fpt or ghec %} | `org.disable_oauth_app_restrictions` | Third-party application access restrictions for an organization were disabled. For more information, see "[Disabling OAuth App access restrictions for your organization](/organizations/restricting-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization)." {%- endif %} @@ -606,7 +652,10 @@ topics: {%- ifversion not ghae %} | `org.disable_two_factor_requirement` | An organization owner disabled a two-factor authentication requirement for all members{% ifversion fpt or ghec %}, billing managers,{% endif %} and outside collaborators in an organization. {%- endif %} -| `org.display_commenter_full_name_disabled` | An organization owner disabled the display of a commenter's full name in an organization. Members cannot see a comment author's full name. | `org.display_commenter_full_name_enabled` | An organization owner enabled the display of a commenter's full name in an organization. Members can see a comment author's full name. | `org.enable_member_team_creation_permission` | An organization owner allowed members to create teams. 更多信息请参阅“[设置组织中的团队创建权限](/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization)”。 | `org.enable_reader_discussion_creation_permission` | An organization owner allowed users with read access to create discussions in an organization. {% ifversion fpt or ghec %}For more information, see "[Allowing or disallowing users with read access to create discussions](/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization)."{% endif %} +| `org.display_commenter_full_name_disabled` | An organization owner disabled the display of a commenter's full name in an organization. Members cannot see a comment author's full name. +| `org.display_commenter_full_name_enabled` | An organization owner enabled the display of a commenter's full name in an organization. Members can see a comment author's full name. +| `org.enable_member_team_creation_permission` | An organization owner allowed members to create teams. For more information, see "[Setting team creation permissions in your organization](/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization)." +| `org.enable_reader_discussion_creation_permission` | An organization owner allowed users with read access to create discussions in an organization. {% ifversion fpt or ghec %}For more information, see "[Allowing or disallowing users with read access to create discussions](/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization)."{% endif %} {%- ifversion fpt or ghec %} | `org.enable_oauth_app_restrictions` | Third-party application access restrictions for an organization were enabled. For more information, see "[Enabling OAuth App access restrictions for your organization](/organizations/restricting-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization)." {%- endif %} @@ -616,30 +665,54 @@ topics: {%- ifversion not ghae %} | `org.enable_two_factor_requirement` | An organization owner requires two-factor authentication for all members{% ifversion fpt or ghec %}, billing managers,{% endif %} and outside collaborators in an organization. {%- endif %} -| `org.integration_manager_added` | An organization owner granted a member access to manage all GitHub Apps owned by an organization. | `org.integration_manager_removed` | An organization owner removed access to manage all GitHub Apps owned by an organization from an organization member. | `org.invite_member` | A new user was invited to join an organization. |{% ifversion fpt or ghec %}For more information, see "[Inviting users to join your organization](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization)."{% endif %}| | `org.invite_to_business` | An organization was invited to join an enterprise. | `org.members_can_update_protected_branches.clear` | An organization owner unset a policy for whether members of an organization can update protected branches on repositories in an organization. Organization administrators can choose whether to allow updating protected branches settings. | `org.members_can_update_protected_branches.disable` | The ability for enterprise members to update protected branches was disabled. Only enterprise owners can update protected branches. | `org.members_can_update_protected_branches.enable` | The ability for enterprise members to update protected branches was enabled. Members of an organization can update protected branches. +| `org.integration_manager_added` | An organization owner granted a member access to manage all GitHub Apps owned by an organization. +| `org.integration_manager_removed` | An organization owner removed access to manage all GitHub Apps owned by an organization from an organization member. +| `org.invite_member` | A new user was invited to join an organization. {% ifversion fpt or ghec %}For more information, see "[Inviting users to join your organization](/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization)."{% endif %} +| `org.invite_to_business` | An organization was invited to join an enterprise. +| `org.members_can_update_protected_branches.clear` | An organization owner unset a policy for whether members of an organization can update protected branches on repositories in an organization. Organization administrators can choose whether to allow updating protected branches settings. +| `org.members_can_update_protected_branches.disable` | The ability for enterprise members to update protected branches was disabled. Only enterprise owners can update protected branches. +| `org.members_can_update_protected_branches.enable` | The ability for enterprise members to update protected branches was enabled. Members of an organization can update protected branches. {%- ifversion fpt or ghec %} -| `org.oauth_app_access_approved` | An owner [granted organization access to an {% data variables.product.prodname_oauth_app %}](/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization). | `org.oauth_app_access_denied` | An owner [disabled a previously approved {% data variables.product.prodname_oauth_app %}'s access](/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization) to an organization. | `org.oauth_app_access_requested` | An organization member requested that an owner grant an {% data variables.product.prodname_oauth_app %} access to an organization. +| `org.oauth_app_access_approved` | An owner [granted organization access to an {% data variables.product.prodname_oauth_app %}](/organizations/restricting-access-to-your-organizations-data/approving-oauth-apps-for-your-organization). +| `org.oauth_app_access_denied` | An owner [disabled a previously approved {% data variables.product.prodname_oauth_app %}'s access](/organizations/restricting-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization) to an organization. +| `org.oauth_app_access_requested` | An organization member requested that an owner grant an {% data variables.product.prodname_oauth_app %} access to an organization. {%- endif %} -| `org.recreate` | An organization was restored. | `org.register_self_hosted_runner` | A new self-hosted runner was registered. 更多信息请参阅“[将自托管运行器添加到组织](/actions/hosting-your-own-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-an-organization)”。 | `org.remove_actions_secret` | A {% data variables.product.prodname_actions %} secret was removed. | `org.remove_integration_secret` | A {% data variables.product.prodname_dependabot %}{% ifversion fpt or ghec %} or {% data variables.product.prodname_codespaces %}{% endif %} integration secret was removed from an organization. | `org.remove_billing_manager` | An owner removed a billing manager from an organization. |{% ifversion fpt or ghec %}For more information, see "[Removing a billing manager from your organization](/organizations/managing-peoples-access-to-your-organization-with-roles/removing-a-billing-manager-from-your-organization)"{% endif %}{% ifversion not ghae %} or when [two-factor authentication was required in an organization](/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization) and a billing manager didn't use 2FA or disabled 2FA.{% endif %}| | `org.remove_member` | An [owner removed a member from an organization](/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization){% ifversion not ghae %} or when [two-factor authentication was required in an organization](/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization) and an organization member doesn't use 2FA or disabled 2FA{% endif %}. Also an [organization member removed themselves](/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/removing-yourself-from-an-organization) from an organization. | `org.remove_outside_collaborator` | An owner removed an outside collaborator from an organization{% ifversion not ghae %} or when [two-factor authentication was required in an organization](/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization) and an outside collaborator didn't use 2FA or disabled 2FA{% endif %}. | `org.remove_self_hosted_runner` | A self-hosted runner was removed. 更多信息请参阅“[从组织移除运行器](/actions/hosting-your-own-runners/removing-self-hosted-runners#removing-a-runner-from-an-organization)”。 | `org.rename` | An organization was renamed. | `org.restore_member` | An organization member was restored. For more information, see "[Reinstating a former member of your organization](/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization)." +| `org.recreate` | An organization was restored. +| `org.register_self_hosted_runner` | A new self-hosted runner was registered. For more information, see "[Adding a self-hosted runner to an organization](/actions/hosting-your-own-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-an-organization)." +| `org.remove_actions_secret` | A {% data variables.product.prodname_actions %} secret was removed. +| `org.remove_integration_secret` | A {% data variables.product.prodname_dependabot %}{% ifversion fpt or ghec %} or {% data variables.product.prodname_codespaces %}{% endif %} integration secret was removed from an organization. +| `org.remove_billing_manager` | An owner removed a billing manager from an organization. {% ifversion fpt or ghec %}For more information, see "[Removing a billing manager from your organization](/organizations/managing-peoples-access-to-your-organization-with-roles/removing-a-billing-manager-from-your-organization)"{% endif %}{% ifversion not ghae %} or when [two-factor authentication was required in an organization](/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization) and a billing manager didn't use 2FA or disabled 2FA.{% endif %} +| `org.remove_member` | An [owner removed a member from an organization](/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization){% ifversion not ghae %} or when [two-factor authentication was required in an organization](/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization) and an organization member doesn't use 2FA or disabled 2FA{% endif %}. Also an [organization member removed themselves](/account-and-profile/setting-up-and-managing-your-github-user-account/managing-your-membership-in-organizations/removing-yourself-from-an-organization) from an organization. +| `org.remove_outside_collaborator` | An owner removed an outside collaborator from an organization{% ifversion not ghae %} or when [two-factor authentication was required in an organization](/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization) and an outside collaborator didn't use 2FA or disabled 2FA{% endif %}. +| `org.remove_self_hosted_runner` | A self-hosted runner was removed. For more information, see "[Removing a runner from an organization](/actions/hosting-your-own-runners/removing-self-hosted-runners#removing-a-runner-from-an-organization)." +| `org.rename` | An organization was renamed. +| `org.restore_member` | An organization member was restored. For more information, see "[Reinstating a former member of your organization](/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization)." {%- ifversion ghec %} -| `org.revoke_external_identity` | An organization owner revoked a member's linked identity. 更多信息请参阅“[查看和管理成员对组织的 SAML 访问](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization#viewing-and-revoking-a-linked-identity)”。 | `org.revoke_sso_session` | An organization owner revoked a member's SAML session. 更多信息请参阅“[查看和管理成员对组织的 SAML 访问](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization#viewing-and-revoking-a-linked-identity)”。 +| `org.revoke_external_identity` | An organization owner revoked a member's linked identity. For more information, see "[Viewing and managing a member's SAML access to your organization](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization#viewing-and-revoking-a-linked-identity)." +| `org.revoke_sso_session` | An organization owner revoked a member's SAML session. For more information, see "[Viewing and managing a member's SAML access to your organization](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization#viewing-and-revoking-a-linked-identity)." {%- endif %} -| `org.runner_group_created` | A self-hosted runner group was created. 更多信息请参阅“[为组织创建自托管运行器组](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#creating-a-self-hosted-runner-group-for-an-organization)”。 | `org.runner_group_removed` | A self-hosted runner group was removed. 更多信息请参阅“[移除自托管运行器组](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#removing-a-self-hosted-runner-group)”。 +| `org.runner_group_created` | A self-hosted runner group was created. For more information, see "[Creating a self-hosted runner group for an organization](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#creating-a-self-hosted-runner-group-for-an-organization)." +| `org.runner_group_removed` | A self-hosted runner group was removed. For more information, see "[Removing a self-hosted runner group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#removing-a-self-hosted-runner-group)." {%- ifversion fpt or ghec %} -| `org.runner_group_renamed` | A self-hosted runner group was renamed. 更多信息请参阅“[更改自托管运行器组的访问策略](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group)”。 +| `org.runner_group_renamed` | A self-hosted runner group was renamed. For more information, see "[Changing the access policy of a self-hosted runner group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group)." {%- endif %} -| `org.runner_group_updated` | The configuration of a self-hosted runner group was changed. 更多信息请参阅“[更改自托管运行器组的访问策略](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group)”。 | `org.runner_group_runner_removed` | The REST API was used to remove a self-hosted runner from a group. 更多信息请参阅“[为组织从组中删除自托管运行器](/rest/reference/actions#remove-a-self-hosted-runner-from-a-group-for-an-organization)”。 | `org.runner_group_runners_added` | A self-hosted runner was added to a group. 更多信息请参阅“[将自托管运行器移动到组](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group)”。 | `org.runner_group_runners_updated`| A runner group's list of members was updated. 更多信息请参阅“[为组织设置组中的自托管运行器](/rest/reference/actions#set-self-hosted-runners-in-a-group-for-an-organization)”。 +| `org.runner_group_updated` | The configuration of a self-hosted runner group was changed. For more information, see "[Changing the access policy of a self-hosted runner group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group)." +| `org.runner_group_runner_removed` | The REST API was used to remove a self-hosted runner from a group. For more information, see "[Remove a self-hosted runner from a group for an organization](/rest/reference/actions#remove-a-self-hosted-runner-from-a-group-for-an-organization)." +| `org.runner_group_runners_added` | A self-hosted runner was added to a group. For more information, see [Moving a self-hosted runner to a group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group). +| `org.runner_group_runners_updated`| A runner group's list of members was updated. For more information, see "[Set self-hosted runners in a group for an organization](/rest/reference/actions#set-self-hosted-runners-in-a-group-for-an-organization)." {%- ifversion fpt or ghec %} | `org.runner_group_visiblity_updated` | The visibility of a self-hosted runner group was updated via the REST API. For more information, see "[Update a self-hosted runner group for an organization](/rest/reference/actions#update-a-self-hosted-runner-group-for-an-organization)." {%- endif %} {%- if secret-scanning-audit-log-custom-patterns %} -| `org.secret_scanning_push_protection_disable` | An organization owner or administrator disabled push protection for secret scanning. 更多信息请参阅“[使用机密扫描保护推送](/enterprise-cloud@latest/code-security/secret-scanning/protecting-pushes-with-secret-scanning)”。 | `org.secret_scanning_push_protection_enable` | An organization owner or administrator enabled push protection for secret scanning. +| `org.secret_scanning_push_protection_disable` | An organization owner or administrator disabled push protection for secret scanning. For more information, see "[Protecting pushes with secret scanning](/enterprise-cloud@latest/code-security/secret-scanning/protecting-pushes-with-secret-scanning)." +| `org.secret_scanning_push_protection_enable` | An organization owner or administrator enabled push protection for secret scanning. {%- endif %} {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} -| `org.self_hosted_runner_online` | The runner application was started. 只能使用 REST API 查看;在 UI 或 JSON/CSV 导出中不可见。 更多信息请参阅“[检查自托管运行器的状态](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)”。 | `org.self_hosted_runner_offline` | The runner application was stopped. 只能使用 REST API 查看;在 UI 或 JSON/CSV 导出中不可见。 更多信息请参阅“[检查自托管运行器的状态](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)”。 +| `org.self_hosted_runner_online` | The runner application was started. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)." +| `org.self_hosted_runner_offline` | The runner application was stopped. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)." {%- endif %} {%- ifversion fpt or ghec or ghes %} -| `org.self_hosted_runner_updated` | The runner application was updated. 可以使用 REST API 和 UI 查看;在 JSON /CSV 导出中不可见。 更多信息请参阅“[关于自托管运行器](/actions/hosting-your-own-runners/about-self-hosted-runners#about-self-hosted-runners)”。 +| `org.self_hosted_runner_updated` | The runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export. For more information, see "[About self-hosted runners](/actions/hosting-your-own-runners/about-self-hosted-runners#about-self-hosted-runners)." {%- endif %} {%- ifversion fpt or ghec %} | `org.set_actions_fork_pr_approvals_policy` | The setting for requiring approvals for workflows from public forks was changed for an organization. For more information, see "[Requiring approval for workflows from public forks](/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization#requiring-approval-for-workflows-from-public-forks)." @@ -658,485 +731,545 @@ topics: {%- ifversion fpt or ghec or ghes %} | `org.update_actions_secret` | A {% data variables.product.prodname_actions %} secret was updated. {%- endif %} -| `org.update_integration_secret` | A {% data variables.product.prodname_dependabot %}{% ifversion fpt or ghec %} or {% data variables.product.prodname_codespaces %}{% endif %} integration secret was updated for an organization. | `org.update_default_repository_permission` | An organization owner changed the default repository permission level for organization members. | `org.update_member` | An organization owner changed a person's role from owner to member or member to owner. | `org.update_member_repository_creation_permission` | An organization owner changed the create repository permission for organization members. | `org.update_member_repository_invitation_permission` | An organization owner changed the policy setting for organization members inviting outside collaborators to repositories. 更多信息请参阅“[设置添加外部协作者的权限](/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators)”。. | `org.update_new_repository_default_branch_setting` | An organization owner changed the name of the default branch for new repositories in the organization. 更多信息请参阅“[管理组织中仓库的默认分支名称](/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization)”。 +| `org.update_integration_secret` | A {% data variables.product.prodname_dependabot %}{% ifversion fpt or ghec %} or {% data variables.product.prodname_codespaces %}{% endif %} integration secret was updated for an organization. +| `org.update_default_repository_permission` | An organization owner changed the default repository permission level for organization members. +| `org.update_member` | An organization owner changed a person's role from owner to member or member to owner. +| `org.update_member_repository_creation_permission` | An organization owner changed the create repository permission for organization members. +| `org.update_member_repository_invitation_permission` | An organization owner changed the policy setting for organization members inviting outside collaborators to repositories. For more information, see "[Setting permissions for adding outside collaborators](/organizations/managing-organization-settings/setting-permissions-for-adding-outside-collaborators)." +| `org.update_new_repository_default_branch_setting` | An organization owner changed the name of the default branch for new repositories in the organization. For more information, see "[Managing the default branch name for repositories in your organization](/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization)." {%- ifversion ghec or ghae %} -| `org.update_saml_provider_settings` | An organization's SAML provider settings were updated. | `org.update_terms_of_service` | An organization changed between the Standard Terms of Service and the Corporate Terms of Service. {% ifversion ghec %}For more information, see "[Upgrading to the Corporate Terms of Service](/organizations/managing-organization-settings/upgrading-to-the-corporate-terms-of-service)."{% endif %} +| `org.update_saml_provider_settings` | An organization's SAML provider settings were updated. +| `org.update_terms_of_service` | An organization changed between the Standard Terms of Service and the Corporate Terms of Service. {% ifversion ghec %}For more information, see "[Upgrading to the Corporate Terms of Service](/organizations/managing-organization-settings/upgrading-to-the-corporate-terms-of-service)."{% endif %} {%- endif %} {%- ifversion ghec or ghes or ghae %} -### `org_credential_authorization` 类操作 +### `org_credential_authorization` category actions -| 操作 | 描述 | -| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `org_credential_authorization.deauthorized` | A member deauthorized credentials for use with SAML single sign-on. | -| {% ifversion ghec or ghae %}For more information, see "[Authenticating with SAML single sign-on](/authentication/authenticating-with-saml-single-sign-on)."{% endif %} | | -| `org_credential_authorization.grant` | A member authorized credentials for use with SAML single sign-on. | -| {% ifversion ghec or ghae %}For more information, see "[Authenticating with SAML single sign-on](/authentication/authenticating-with-saml-single-sign-on)."{% endif %} | | -| `org_credential_authorization.revoke` | An owner revoked authorized credentials. {% ifversion ghec %}For more information, see "[Viewing and managing your active SAML sessions](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization)."{% endif %} +| Action | Description +|--------|------------- +| `org_credential_authorization.deauthorized` | A member deauthorized credentials for use with SAML single sign-on. {% ifversion ghec or ghae %}For more information, see "[Authenticating with SAML single sign-on](/authentication/authenticating-with-saml-single-sign-on)."{% endif %} +| `org_credential_authorization.grant` | A member authorized credentials for use with SAML single sign-on. {% ifversion ghec or ghae %}For more information, see "[Authenticating with SAML single sign-on](/authentication/authenticating-with-saml-single-sign-on)."{% endif %} +| `org_credential_authorization.revoke` | An owner revoked authorized credentials. {% ifversion ghec %}For more information, see "[Viewing and managing your active SAML sessions](/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization)."{% endif %} {%- endif %} {%- if secret-scanning-audit-log-custom-patterns %} -### `org_secret_scanning_custom_pattern` 类操作 +### `org_secret_scanning_custom_pattern` category actions -| 操作 | 描述 | -| ------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `org_secret_scanning_custom_pattern.create` | A custom pattern is published for secret scanning in an organization. 更多信息请参阅“[定义机密扫描的自定义模式](/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization)”。 | -| `org_secret_scanning_custom_pattern.delete` | A custom pattern is removed from secret scanning in an organization. 更多信息请参阅“[定义机密扫描的自定义模式](/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#removing-a-custom-pattern)”。 | -| `org_secret_scanning_custom_pattern.update` | Changes to a custom pattern are saved for secret scanning in an organization. 更多信息请参阅“[定义机密扫描的自定义模式](/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#editing-a-custom-pattern)”。 | +| Action | Description +|--------|--------------- +| `org_secret_scanning_custom_pattern.create` | A custom pattern is published for secret scanning in an organization. For more information, see "[Defining custom patterns for secret scanning](/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-an-organization)." +| `org_secret_scanning_custom_pattern.delete` | A custom pattern is removed from secret scanning in an organization. For more information, see "[Defining custom patterns for secret scanning](/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#removing-a-custom-pattern)." +| `org_secret_scanning_custom_pattern.update` |Changes to a custom pattern are saved for secret scanning in an organization. For more information, see "[Defining custom patterns for secret scanning](/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#editing-a-custom-pattern)." {%- endif %} ### `organization_default_label` category actions -| 操作 | 描述 | -| ------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `organization_default_label.create` | A default label for repositories in an organization was created. For more information, see "[Creating a default label](/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization#creating-a-default-label)." | -| `organization_default_label.update` | A default label for repositories in an organization was edited. For more information, see "[Editing a default label](/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization#editing-a-default-label)." | -| `organization_default_label.destroy` | A default label for repositories in an organization was deleted. For more information, see "[Deleting a default label](/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization#deleting-a-default-label)." | +| Action | Description +|--------|------------- +| `organization_default_label.create` | A default label for repositories in an organization was created. For more information, see "[Creating a default label](/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization#creating-a-default-label)." +| `organization_default_label.update` | A default label for repositories in an organization was edited. For more information, see "[Editing a default label](/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization#editing-a-default-label)." +| `organization_default_label.destroy` | A default label for repositories in an organization was deleted. For more information, see "[Deleting a default label](/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization#deleting-a-default-label)." {%- ifversion fpt or ghec or ghes > 3.1 %} ### `organization_domain` category actions -| 操作 | 描述 | -| ----------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `organization_domain.approve` | An enterprise domain was approved for an organization. For more information, see "[Approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#approving-a-domain-for-your-organization)." | -| `organization_domain.create` | An enterprise domain was added to an organization. For more information, see "[Verifying a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#verifying-a-domain-for-your-organization)." | -| `organization_domain.destroy` | An enterprise domain was removed from an organization. For more information, see "[Removing an approved or verified domain](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#removing-an-approved-or-verified-domain)." | -| `organization_domain.verify` | An enterprise domain was verified for an organization. For more information, see "[Verifying a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#verifying-a-domain-for-your-organization)." | +| Action | Description +|--------|------------- +| `organization_domain.approve` | An enterprise domain was approved for an organization. For more information, see "[Approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#approving-a-domain-for-your-organization)." +| `organization_domain.create` | An enterprise domain was added to an organization. For more information, see "[Verifying a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#verifying-a-domain-for-your-organization)." +| `organization_domain.destroy` | An enterprise domain was removed from an organization. For more information, see "[Removing an approved or verified domain](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#removing-an-approved-or-verified-domain)." +| `organization_domain.verify` | An enterprise domain was verified for an organization. For more information, see "[Verifying a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization#verifying-a-domain-for-your-organization)." ### `organization_projects_change` category actions -| 操作 | 描述 | -| -------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `organization_projects_change.clear` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} cleared the policy setting for organization-wide project boards in an enterprise. For more information, see "[Enforcing a policy for organization-wide project boards](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise#enforcing-a-policy-for-organization-wide-project-boards)." | -| `organization_projects_change.disable` | Organization projects were disabled for all organizations in an enterprise. For more information, see "[Enforcing a policy for organization-wide project boards](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise#enforcing-a-policy-for-organization-wide-project-boards)." | -| `organization_projects_change.enable` | Organization projects were enabled for all organizations in an enterprise. For more information, see "[Enforcing a policy for organization-wide project boards](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise#enforcing-a-policy-for-organization-wide-project-boards)." | +| Action | Description +|--------|------------- +| `organization_projects_change.clear` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} cleared the policy setting for organization-wide project boards in an enterprise. For more information, see "[Enforcing a policy for organization-wide project boards](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise#enforcing-a-policy-for-organization-wide-project-boards)." +| `organization_projects_change.disable` | Organization projects were disabled for all organizations in an enterprise. For more information, see "[Enforcing a policy for organization-wide project boards](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise#enforcing-a-policy-for-organization-wide-project-boards)." +| `organization_projects_change.enable` | Organization projects were enabled for all organizations in an enterprise. For more information, see "[Enforcing a policy for organization-wide project boards](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise#enforcing-a-policy-for-organization-wide-project-boards)." {%- endif %} {%- ifversion fpt or ghec or ghes > 3.0 or ghae %} -### `packages` 类操作 +### `packages` category actions -| 操作 | 描述 | -| ------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `packages.insecure_hash` | Maven published an insecure hash for a specific package version. | -| `packages.package_deleted` | A package was deleted from an organization.{% ifversion fpt or ghec or ghes > 3.1 %} For more information, see "[Deleting and restoring a package](/packages/learn-github-packages/deleting-and-restoring-a-package)."{% endif %} -| `packages.package_published` | A package was published or republished to an organization. | -| `packages.package_restored` | An entire package was restored.{% ifversion fpt or ghec or ghes > 3.1 %} For more information, see "[Deleting and restoring a package](/packages/learn-github-packages/deleting-and-restoring-a-package)."{% endif %} -| `packages.package_version_deleted` | A specific package version was deleted.{% ifversion fpt or ghec or ghes > 3.1 %} For more information, see "[Deleting and restoring a package](/packages/learn-github-packages/deleting-and-restoring-a-package)."{% endif %} -| `packages.package_version_published` | A specific package version was published or republished to a package. | -| `packages.package_version_restored` | A specific package version was deleted.{% ifversion fpt or ghec or ghes > 3.1 %} For more information, see "[Deleting and restoring a package](/packages/learn-github-packages/deleting-and-restoring-a-package)."{% endif %} -| `packages.part_upload` | A specific package version was partially uploaded to an organization. | -| `packages.upstream_package_fetched` | A specific package version was fetched from the npm upstream proxy. | -| `packages.version_download` | A specific package version was downloaded. | -| `packages.version_upload` | A specific package version was uploaded. | +| Action | Description +|--------|------------- +| `packages.insecure_hash` | Maven published an insecure hash for a specific package version. +| `packages.package_deleted` | A package was deleted from an organization.{% ifversion fpt or ghec or ghes > 3.1 %} For more information, see "[Deleting and restoring a package](/packages/learn-github-packages/deleting-and-restoring-a-package)."{% endif %} +| `packages.package_published` | A package was published or republished to an organization. +| `packages.package_restored` | An entire package was restored.{% ifversion fpt or ghec or ghes > 3.1 %} For more information, see "[Deleting and restoring a package](/packages/learn-github-packages/deleting-and-restoring-a-package)."{% endif %} +| `packages.package_version_deleted` | A specific package version was deleted.{% ifversion fpt or ghec or ghes > 3.1 %} For more information, see "[Deleting and restoring a package](/packages/learn-github-packages/deleting-and-restoring-a-package)."{% endif %} +| `packages.package_version_published` | A specific package version was published or republished to a package. +| `packages.package_version_restored` | A specific package version was deleted.{% ifversion fpt or ghec or ghes > 3.1 %} For more information, see "[Deleting and restoring a package](/packages/learn-github-packages/deleting-and-restoring-a-package)."{% endif %} +| `packages.part_upload` | A specific package version was partially uploaded to an organization. +| `packages.upstream_package_fetched` | A specific package version was fetched from the npm upstream proxy. +| `packages.version_download` | A specific package version was downloaded. +| `packages.version_upload` | A specific package version was uploaded. {%- endif %} {%- ifversion fpt or ghec %} ### `pages_protected_domain` category actions -| 操作 | 描述 | -| ------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `pages_protected_domain.create` | A {% data variables.product.prodname_pages %} verified domain was created for an organization or enterprise. 更多信息请参阅“[验证 {% data variables.product.prodname_pages %} 的自定义域](/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages)”。 | -| `pages_protected_domain.delete` | A {% data variables.product.prodname_pages %} verified domain was deleted from an organization or enterprise. 更多信息请参阅“[验证 {% data variables.product.prodname_pages %} 的自定义域](/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages)”。 | -| `pages_protected_domain.verify` | A {% data variables.product.prodname_pages %} domain was verified for an organization or enterprise. 更多信息请参阅“[验证 {% data variables.product.prodname_pages %} 的自定义域](/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages)”。 | +| Action | Description +|--------|------------- +| `pages_protected_domain.create` | A {% data variables.product.prodname_pages %} verified domain was created for an organization or enterprise. For more information, see "[Verifying your custom domain for {% data variables.product.prodname_pages %}](/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages)." +| `pages_protected_domain.delete` | A {% data variables.product.prodname_pages %} verified domain was deleted from an organization or enterprise. For more information, see "[Verifying your custom domain for {% data variables.product.prodname_pages %}](/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages)." +| `pages_protected_domain.verify` | A {% data variables.product.prodname_pages %} domain was verified for an organization or enterprise. For more information, see "[Verifying your custom domain for {% data variables.product.prodname_pages %}](/pages/configuring-a-custom-domain-for-your-github-pages-site/verifying-your-custom-domain-for-github-pages)." -### `payment_method` 类操作 +### `payment_method` category actions -| 操作 | 描述 | -| ----------------------- | ---------------------------------------------------------------------------- | -| `payment_method.create` | A new payment method was added, such as a new credit card or PayPal account. | -| `payment_method.remove` | A payment method was removed. | -| `payment_method.update` | An existing payment method was updated. | +| Action | Description +|--------|------------- +| `payment_method.create` | A new payment method was added, such as a new credit card or PayPal account. +| `payment_method.remove` | A payment method was removed. +| `payment_method.update` | An existing payment method was updated. ### `prebuild_configuration` category actions -| 操作 | 描述 | -| -------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `prebuild_configuration.create` | A {% data variables.product.prodname_codespaces %} prebuild configuration for a repository was created. 更多信息请参阅“[关于代码空间预构建](/codespaces/prebuilding-your-codespaces/about-codespaces-prebuilds)”。 | -| `prebuild_configuration.destroy` | A {% data variables.product.prodname_codespaces %} prebuild configuration for a repository was deleted. 更多信息请参阅“[关于代码空间预构建](/codespaces/prebuilding-your-codespaces/about-codespaces-prebuilds)”。 | -| `prebuild_configuration.run_triggered` | A user initiated a run of a {% data variables.product.prodname_codespaces %} prebuild configuration for a repository branch. 更多信息请参阅“[关于代码空间预构建](/codespaces/prebuilding-your-codespaces/about-codespaces-prebuilds)”。 | -| `prebuild_configuration.update` | A {% data variables.product.prodname_codespaces %} prebuild configuration for a repository was edited. 更多信息请参阅“[关于代码空间预构建](/codespaces/prebuilding-your-codespaces/about-codespaces-prebuilds)”。 | +| Action | Description +|--------|------------- +| `prebuild_configuration.create` | A {% data variables.product.prodname_codespaces %} prebuild configuration for a repository was created. For more information, see "[About Codespaces prebuilds](/codespaces/prebuilding-your-codespaces/about-codespaces-prebuilds)." +| `prebuild_configuration.destroy` | A {% data variables.product.prodname_codespaces %} prebuild configuration for a repository was deleted. For more information, see "[About Codespaces prebuilds](/codespaces/prebuilding-your-codespaces/about-codespaces-prebuilds)." +| `prebuild_configuration.run_triggered` | A user initiated a run of a {% data variables.product.prodname_codespaces %} prebuild configuration for a repository branch. For more information, see "[About Codespaces prebuilds](/codespaces/prebuilding-your-codespaces/about-codespaces-prebuilds)." +| `prebuild_configuration.update` | A {% data variables.product.prodname_codespaces %} prebuild configuration for a repository was edited. For more information, see "[About Codespaces prebuilds](/codespaces/prebuilding-your-codespaces/about-codespaces-prebuilds)." {%- endif %} {%- ifversion ghes %} ### `pre_receive_environment` category actions -| 操作 | 描述 | -| ---------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `pre_receive_environment.create` | A pre-receive hook environment was created. For more information, see "[Creating a pre-receive hook environment](/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-environment)." | -| `pre_receive_environment.destroy` | A pre-receive hook environment was deleted. For more information, see "[Creating a pre-receive hook environment](/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-environment)." | -| `pre_receive_environment.download` | A pre-receive hook environment was downloaded. For more information, see "[Creating a pre-receive hook environment](/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-environment)." | -| `pre_receive_environment.update` | A pre-receive hook environment was updated. For more information, see "[Creating a pre-receive hook environment](/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-environment)." | +| Action | Description +| ------ | ----------- +| `pre_receive_environment.create` | A pre-receive hook environment was created. For more information, see "[Creating a pre-receive hook environment](/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-environment)." +| `pre_receive_environment.destroy` | A pre-receive hook environment was deleted. For more information, see "[Creating a pre-receive hook environment](/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-environment)." +| `pre_receive_environment.download` | A pre-receive hook environment was downloaded. For more information, see "[Creating a pre-receive hook environment](/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-environment)." +| `pre_receive_environment.update` | A pre-receive hook environment was updated. For more information, see "[Creating a pre-receive hook environment](/admin/policies/enforcing-policy-with-pre-receive-hooks/creating-a-pre-receive-hook-environment)." ### `pre_receive_hook` category actions -| 操作 | 描述 | -| -------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `pre_receive_hook.create` | A pre-receive hook was created. For more information, see "[Creating pre-receive hooks](/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance#creating-pre-receive-hooks)." | -| `pre_receive_hook.destroy` | A pre-receive hook was deleted. For more information, see "[Deleting pre-receive hooks](/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance#deleting-pre-receive-hooks)." | -| `pre_receive_hook.enforcement` | A pre-receive hook enforcement setting allowing repository and organization administrators to override the hook configuration was enabled or disabled. For more information, see "[Managing pre-receive hooks on the GitHub Enterprise Server appliance](/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance)." | -| `pre_receive_hook.rejected_push` | A pre-receive hook rejected a push. | -| `pre_receive_hook.update` | A pre-receive hook was created. For more information, see "[Editing pre-receive hooks](/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance#editing-pre-receive-hooks)." | -| `pre_receive_hook.warned_push` | A pre-receive hook warned about a push. | +| Action | Description +|--------|------------- +| `pre_receive_hook.create` | A pre-receive hook was created. For more information, see "[Creating pre-receive hooks](/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance#creating-pre-receive-hooks)." +| `pre_receive_hook.destroy` | A pre-receive hook was deleted. For more information, see "[Deleting pre-receive hooks](/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance#deleting-pre-receive-hooks)." +| `pre_receive_hook.enforcement` | A pre-receive hook enforcement setting allowing repository and organization administrators to override the hook configuration was enabled or disabled. For more information, see "[Managing pre-receive hooks on the GitHub Enterprise Server appliance](/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance)." +| `pre_receive_hook.rejected_push` | A pre-receive hook rejected a push. +| `pre_receive_hook.update` | A pre-receive hook was created. For more information, see "[Editing pre-receive hooks](/admin/policies/enforcing-policy-with-pre-receive-hooks/managing-pre-receive-hooks-on-the-github-enterprise-server-appliance#editing-pre-receive-hooks)." +| `pre_receive_hook.warned_push` | A pre-receive hook warned about a push. {%- endif %} ### `private_repository_forking` category actions -| 操作 | 描述 | -| ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `private_repository_forking.clear` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} cleared the policy setting for allowing forks of private and internal repositories, for a repository, organization or enterprise. For more information, see "[Managing the forking policy for your repository](/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository), "[Managing the forking policy for your organization](/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization) and for enterprises "[Enforcing a policy for forking private or internal repositories](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-forking-private-or-internal-repositories)." | -| `private_repository_forking.disable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled the policy setting for allowing forks of private and internal repositories, for a repository, organization or enterprise. Private and internal repositories are never allowed to be forked. For more information, see "[Managing the forking policy for your repository](/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository), "[Managing the forking policy for your organization](/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization) and for enterprises "[Enforcing a policy for forking private or internal repositories](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-forking-private-or-internal-repositories)." | -| `private_repository_forking.enable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled the policy setting for allowing forks of private and internal repositories, for a repository, organization or enterprise. Private and internal repositories are always allowed to be forked. For more information, see "[Managing the forking policy for your repository](/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository), "[Managing the forking policy for your organization](/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization) and for enterprises "[Enforcing a policy for forking private or internal repositories](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-forking-private-or-internal-repositories)." | +| Action | Description +|--------|------------- +| `private_repository_forking.clear` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} cleared the policy setting for allowing forks of private and internal repositories, for a repository, organization or enterprise. For more information, see "[Managing the forking policy for your repository](/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository), "[Managing the forking policy for your organization](/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization) and for enterprises "[Enforcing a policy for forking private or internal repositories](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-forking-private-or-internal-repositories)." +| `private_repository_forking.disable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} disabled the policy setting for allowing forks of private and internal repositories, for a repository, organization or enterprise. Private and internal repositories are never allowed to be forked. For more information, see "[Managing the forking policy for your repository](/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository), "[Managing the forking policy for your organization](/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization) and for enterprises "[Enforcing a policy for forking private or internal repositories](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-forking-private-or-internal-repositories)." +| `private_repository_forking.enable` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} enabled the policy setting for allowing forks of private and internal repositories, for a repository, organization or enterprise. Private and internal repositories are always allowed to be forked. For more information, see "[Managing the forking policy for your repository](/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository), "[Managing the forking policy for your organization](/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization) and for enterprises "[Enforcing a policy for forking private or internal repositories](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-forking-private-or-internal-repositories)." {%- ifversion fpt or ghec %} -### `profile_picture` 类操作 +### `profile_picture` category actions -| 操作 | 描述 | -| ------------------------ | ------------------------------ | -| `profile_picture.update` | A profile picture was updated. | +| Action | Description +|--------|------------- +| `profile_picture.update` | A profile picture was updated. {%- endif %} -### `project` 类操作 +### `project` category actions -| 操作 | 描述 | -| -------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `project.access` | A project board visibility was changed. For more information, see "[Changing project board visibility](/issues/organizing-your-work-with-project-boards/managing-project-boards/changing-project-board-visibility)." | -| `project.close` | A project board was closed. For more information, see "[Closing a project board](/issues/organizing-your-work-with-project-boards/managing-project-boards/closing-a-project-board)." | -| `project.create` | A project board was created. For more information, see "[Creating a project board](/issues/organizing-your-work-with-project-boards/managing-project-boards/creating-a-project-board)." | -| `project.delete` | A project board was deleted. For more information, see "[Deleting a project board](/issues/organizing-your-work-with-project-boards/managing-project-boards/deleting-a-project-board)." | -| `project.link` | A repository was linked to a project board. For more information, see "[Linking a repository to a project board](/issues/organizing-your-work-with-project-boards/managing-project-boards/linking-a-repository-to-a-project-board)." | -| `project.open` | A project board was reopened. For more information, see "[Reopening a closed project board](/issues/organizing-your-work-with-project-boards/managing-project-boards/reopening-a-closed-project-board)." | -| `project.rename` | A project board was renamed. For more information, see "[Editing a project board](/issues/organizing-your-work-with-project-boards/managing-project-boards/editing-a-project-board)." | -| `project.unlink` | A repository was unlinked from a project board. For more information, see "[Linking a repository to a project board](/issues/organizing-your-work-with-project-boards/managing-project-boards/linking-a-repository-to-a-project-board)." | -| `project.update_org_permission` | The project's base-level permission for all organization members was changed or removed. For more information, see "[Managing access to a project board for organization members](/organizations/managing-access-to-your-organizations-project-boards/managing-access-to-a-project-board-for-organization-members)." | -| `project.update_team_permission` | A team's project board permission level was changed or when a team was added or removed from a project board. For more information, see "[Managing team access to an organization project board](/organizations/managing-access-to-your-organizations-project-boards/managing-team-access-to-an-organization-project-board)." | -| `project.update_user_permission` | An organization member or outside collaborator was added to or removed from a project board or had their permission level changed. For more information, see "[Managing an individual’s access to an organization project board](/organizations/managing-access-to-your-organizations-project-boards/managing-an-individuals-access-to-an-organization-project-board)." | +| Action | Description +|--------|------------- +| `project.access` | A project board visibility was changed. For more information, see "[Changing project board visibility](/issues/organizing-your-work-with-project-boards/managing-project-boards/changing-project-board-visibility)." +| `project.close` | A project board was closed. For more information, see "[Closing a project board](/issues/organizing-your-work-with-project-boards/managing-project-boards/closing-a-project-board)." +| `project.create` | A project board was created. For more information, see "[Creating a project board](/issues/organizing-your-work-with-project-boards/managing-project-boards/creating-a-project-board)." +| `project.delete` | A project board was deleted. For more information, see "[Deleting a project board](/issues/organizing-your-work-with-project-boards/managing-project-boards/deleting-a-project-board)." +| `project.link` | A repository was linked to a project board. For more information, see "[Linking a repository to a project board](/issues/organizing-your-work-with-project-boards/managing-project-boards/linking-a-repository-to-a-project-board)." +| `project.open` | A project board was reopened. For more information, see "[Reopening a closed project board](/issues/organizing-your-work-with-project-boards/managing-project-boards/reopening-a-closed-project-board)." +| `project.rename` | A project board was renamed. For more information, see "[Editing a project board](/issues/organizing-your-work-with-project-boards/managing-project-boards/editing-a-project-board)." +| `project.unlink` | A repository was unlinked from a project board. For more information, see "[Linking a repository to a project board](/issues/organizing-your-work-with-project-boards/managing-project-boards/linking-a-repository-to-a-project-board)." +| `project.update_org_permission` | The project's base-level permission for all organization members was changed or removed. For more information, see "[Managing access to a project board for organization members](/organizations/managing-access-to-your-organizations-project-boards/managing-access-to-a-project-board-for-organization-members)." +| `project.update_team_permission` | A team's project board permission level was changed or when a team was added or removed from a project board. For more information, see "[Managing team access to an organization project board](/organizations/managing-access-to-your-organizations-project-boards/managing-team-access-to-an-organization-project-board)." +| `project.update_user_permission` | An organization member or outside collaborator was added to or removed from a project board or had their permission level changed. For more information, see "[Managing an individual’s access to an organization project board](/organizations/managing-access-to-your-organizations-project-boards/managing-an-individuals-access-to-an-organization-project-board)." {%- ifversion fpt or ghec %} ### `project_field` category actions -| 操作 | 描述 | -| ---------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `project_field.create` | A field was created in a project board. For more information, see "[Creating a project (beta)](/issues/trying-out-the-new-projects-experience/creating-a-project#adding-fields)." | -| `project_field.delete` | A field was deleted in a project board. For more information, see "[Creating a project (beta)](/issues/trying-out-the-new-projects-experience/creating-a-project#adding-fields)." | +| Action | Description +|--------|------------- +| `project_field.create` | A field was created in a project board. For more information, see "[Creating a project (beta)](/issues/trying-out-the-new-projects-experience/creating-a-project#adding-fields)." +| `project_field.delete` | A field was deleted in a project board. For more information, see "[Creating a project (beta)](/issues/trying-out-the-new-projects-experience/creating-a-project#adding-fields)." ### `project_view` category actions -| 操作 | 描述 | -| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `project_view.create` | A view was created in a project board. For more information, see "[Customizing your project (beta) views](/issues/trying-out-the-new-projects-experience/customizing-your-project-views#creating-a-project-view)." | -| `project_view.delete` | A view was deleted in a project board. For more information, see "[Customizing your project (beta) views](/issues/trying-out-the-new-projects-experience/customizing-your-project-views#deleting-a-saved-view)." | +| Action | Description +|--------|------------- +| `project_view.create` | A view was created in a project board. For more information, see "[Customizing your project (beta) views](/issues/trying-out-the-new-projects-experience/customizing-your-project-views#creating-a-project-view)." +| `project_view.delete` | A view was deleted in a project board. For more information, see "[Customizing your project (beta) views](/issues/trying-out-the-new-projects-experience/customizing-your-project-views#deleting-a-saved-view)." {%- endif %} -### `protected_branch` 类操作 +### `protected_branch` category actions -| 操作 | 描述 | -| ---------------------------------------- | ---------------------------------------------------------------------- | -| `protected_branch.create` | Branch protection was enabled on a branch. | -| `protected_branch.destroy` | Branch protection was disabled on a branch. | -| `protected_branch.dismiss_stale_reviews` | Enforcement of dismissing stale pull requests was updated on a branch. | +| Action | Description +|--------|------------- +| `protected_branch.create ` | Branch protection was enabled on a branch. +| `protected_branch.destroy` | Branch protection was disabled on a branch. +| `protected_branch.dismiss_stale_reviews ` | Enforcement of dismissing stale pull requests was updated on a branch. {%- ifversion ghes %} | `protected_branch.dismissal_restricted_users_teams` | Enforcement of restricting users and/or teams who can dismiss reviews was updated on a branch. {%- endif %} -| `protected_branch.policy_override` | A branch protection requirement was overridden by a repository administrator. | `protected_branch.rejected_ref_update` | A branch update attempt was rejected. | `protected_branch.required_status_override` | The required status checks branch protection requirement was overridden by a repository administrator. | `protected_branch.review_policy_and_required_status_override` | The required reviews and required status checks branch protection requirements were overridden by a repository administrator. | `protected_branch.review_policy_override` | The required reviews branch protection requirement was overridden by a repository administrator. | `protected_branch.update_admin_enforced` | Branch protection was enforced for repository administrators. +| `protected_branch.policy_override ` | A branch protection requirement was overridden by a repository administrator. +| `protected_branch.rejected_ref_update ` | A branch update attempt was rejected. +| `protected_branch.required_status_override` | The required status checks branch protection requirement was overridden by a repository administrator. +| `protected_branch.review_policy_and_required_status_override` | The required reviews and required status checks branch protection requirements were overridden by a repository administrator. +| `protected_branch.review_policy_override` | The required reviews branch protection requirement was overridden by a repository administrator. +| `protected_branch.update_admin_enforced ` | Branch protection was enforced for repository administrators. {%- ifversion ghes %} -| `protected_branch.update_allow_deletions_enforcement_level` | Enforcement of allowing users with push access to delete matching branches was updated on a branch. | `protected_branch.update_allow_force_pushes_enforcement_level` | Enforcement of allowing force pushes for all users with push access was updated on a branch. | `protected_branch.update_linear_history_requirement_enforcement_level` | Enforcement of requiring linear commit history was updated on a branch. +| `protected_branch.update_allow_deletions_enforcement_level` | Enforcement of allowing users with push access to delete matching branches was updated on a branch. +| `protected_branch.update_allow_force_pushes_enforcement_level` | Enforcement of allowing force pushes for all users with push access was updated on a branch. +| `protected_branch.update_linear_history_requirement_enforcement_level` | Enforcement of requiring linear commit history was updated on a branch. {%- endif %} -| `protected_branch.update_pull_request_reviews_enforcement_level` | Enforcement of required pull request reviews was updated on a branch. 可以是 `0`(已停用)、`1`(非管理员)`2`(所有人)之一。 | `protected_branch.update_require_code_owner_review` | Enforcement of required code owner review was updated on a branch. | `protected_branch.update_required_approving_review_count` | Enforcement of the required number of approvals before merging was updated on a branch. | `protected_branch.update_required_status_checks_enforcement_level` | Enforcement of required status checks was updated on a branch. | `protected_branch.update_signature_requirement_enforcement_level` | Enforcement of required commit signing was updated on a branch. | `protected_branch.update_strict_required_status_checks_policy` | Enforcement of required status checks was updated on a branch. | `protected_branch.update_name` | A branch name pattern was updated for a branch. +| `protected_branch.update_pull_request_reviews_enforcement_level ` | Enforcement of required pull request reviews was updated on a branch. Can be one of `0`(deactivated), `1`(non-admins), `2`(everyone). +| `protected_branch.update_require_code_owner_review ` | Enforcement of required code owner review was updated on a branch. +| `protected_branch.update_required_approving_review_count` | Enforcement of the required number of approvals before merging was updated on a branch. +| `protected_branch.update_required_status_checks_enforcement_level ` | Enforcement of required status checks was updated on a branch. +| `protected_branch.update_signature_requirement_enforcement_level ` | Enforcement of required commit signing was updated on a branch. +| `protected_branch.update_strict_required_status_checks_policy` | Enforcement of required status checks was updated on a branch. +| `protected_branch.update_name` | A branch name pattern was updated for a branch. -### `public_key` 类操作 +### `public_key` category actions -| 操作 | 描述 | -| ----------------------------------- | ------------------------------------------------------------------------------------------------ | -| `public_key.create` | An SSH key was [added][add key] to a user account or a [deploy key][] was added to a repository. | -| `public_key.delete` | An SSH key was removed from a user account or a [deploy key][] was removed from a repository. | -| `public_key.update` | A user account's SSH key or a repository's [deploy key][] was updated. | -| `public_key.unverification_failure` | A user account's SSH key or a repository's [deploy key][] was unable to be unverified. | -| `public_key.unverify` | A user account's SSH key or a repository's [deploy key][] was unverified. | -| `public_key.verification_failure` | A user account's SSH key or a repository's [deploy key][] was unable to be verified. | -| `public_key.verify` | A user account's SSH key or a repository's [deploy key][] was verified. | +| Action | Description +|--------|------------- +| `public_key.create` | An SSH key was [added][add key] to a user account or a [deploy key][] was added to a repository. +| `public_key.delete` | An SSH key was removed from a user account or a [deploy key][] was removed from a repository. +| `public_key.update` | A user account's SSH key or a repository's [deploy key][] was updated. +| `public_key.unverification_failure` | A user account's SSH key or a repository's [deploy key][] was unable to be unverified. +| `public_key.unverify` | A user account's SSH key or a repository's [deploy key][] was unverified. +| `public_key.verification_failure` | A user account's SSH key or a repository's [deploy key][] was unable to be verified. +| `public_key.verify` | A user account's SSH key or a repository's [deploy key][] was verified. + + [add key]: /authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account + [deploy key]: /developers/overview/managing-deploy-keys#deploy-keys {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} -### `pull_request` 类操作 +### `pull_request` category actions -| 操作 | 描述 | -| ------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `pull_request.close` | A pull request was closed without being merged. For more information, see "[Closing a pull request](/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request)." | -| `pull_request.converted_to_draft` | A pull request was converted to a draft. For more information, see "[Changing the stage of a pull request](/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#converting-a-pull-request-to-a-draft)." | -| `pull_request.create` | A pull request was created. For more information, see "[Creating a pull request](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request)." | -| `pull_request.create_review_request` | A review was requested on a pull request. 更多信息请参阅“[关于拉取请求审查](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews)”。 | -| `pull_request.in_progress` | A pull request was marked as in progress. | -| `pull_request.indirect_merge` | A pull request was considered merged because the pull request's commits were merged into the target branch. | -| `pull_request.merge` | A pull request was merged. 更多信息请参阅“[合并拉取请求](/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request)”。 | -| `pull_request.ready_for_review` | A pull request was marked as ready for review. 更多信息请参阅“[更改拉取请求的阶段](/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#marking-a-pull-request-as-ready-for-review)”。 | -| `pull_request.remove_review_request` | A review request was removed from a pull request. 更多信息请参阅“[关于拉取请求审查](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews)”。 | -| `pull_request.reopen` | A pull request was reopened after previously being closed. | -| `pull_request_review.delete` | A review on a pull request was deleted. | -| `pull_request_review.dismiss` | A review on a pull request was dismissed. 更多信息请参阅“[忽略拉取请求审查](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review)”。 | -| `pull_request_review.submit` | A review was submitted for a pull request. 更多信息请参阅“[关于拉取请求审查](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews)”。 | +| Action | Description +|--------|------------- +| `pull_request.close` | A pull request was closed without being merged. For more information, see "[Closing a pull request](/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request)." +| `pull_request.converted_to_draft` | A pull request was converted to a draft. For more information, see "[Changing the stage of a pull request](/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#converting-a-pull-request-to-a-draft)." +| `pull_request.create` | A pull request was created. For more information, see "[Creating a pull request](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request)." +| `pull_request.create_review_request` | A review was requested on a pull request. For more information, see "[About pull request reviews](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews)." +| `pull_request.in_progress` | A pull request was marked as in progress. +| `pull_request.indirect_merge` | A pull request was considered merged because the pull request's commits were merged into the target branch. +| `pull_request.merge` | A pull request was merged. For more information, see "[Merging a pull request](/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request)." +| `pull_request.ready_for_review` | A pull request was marked as ready for review. For more information, see "[Changing the stage of a pull request](/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#marking-a-pull-request-as-ready-for-review)." +| `pull_request.remove_review_request` | A review request was removed from a pull request. For more information, see "[About pull request reviews](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews)." +| `pull_request.reopen` | A pull request was reopened after previously being closed. +| `pull_request_review.delete` | A review on a pull request was deleted. +| `pull_request_review.dismiss` | A review on a pull request was dismissed. For more information, see "[Dismissing a pull request review](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review)." +| `pull_request_review.submit` | A review was submitted for a pull request. For more information, see "[About pull request reviews](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews)." -### `pull_request_review` 类操作 +### `pull_request_review` category actions -| 操作 | 描述 | -| ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `pull_request_review.delete` | A review on a pull request was deleted. | -| `pull_request_review.dismiss` | A review on a pull request was dismissed. 更多信息请参阅“[忽略拉取请求审查](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review)”。 | -| `pull_request_review.submit` | A review on a pull request was submitted. For more information, see "[Submitting your review](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request#submitting-your-review)." | +| Action | Description +|--------|------------- +| `pull_request_review.delete` | A review on a pull request was deleted. +| `pull_request_review.dismiss` | A review on a pull request was dismissed. For more information, see "[Dismissing a pull request review](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review)." +| `pull_request_review.submit` | A review on a pull request was submitted. For more information, see "[Submitting your review](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request#submitting-your-review)." -### `pull_request_review_comment` 类操作 +### `pull_request_review_comment` category actions -| 操作 | 描述 | -| ------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `pull_request_review_comment.create` | A review comment was added to a pull request. 更多信息请参阅“[关于拉取请求审查](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews)”。 | -| `pull_request_review_comment.delete` | A review comment on a pull request was deleted. | -| `pull_request_review_comment.update` | A review comment on a pull request was changed. | +| Action | Description +|--------|------------- +| `pull_request_review_comment.create` | A review comment was added to a pull request. For more information, see "[About pull request reviews](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews)." +| `pull_request_review_comment.delete` | A review comment on a pull request was deleted. +| `pull_request_review_comment.update` | A review comment on a pull request was changed. {%- endif %} -### `repo` 类操作 +### `repo` category actions -| 操作 | 描述 | -| -------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `repo.access` | 仓库的可见性已更改为私有{%- ifversion ghes %}、公共{% endif %} 或内部。 | -| `repo.actions_enabled` | {% data variables.product.prodname_actions %} was enabled for a repository. | -| `repo.add_member` | 已向仓库添加协作者。 | -| `repo.add_topic` | A topic was added to a repository. | -| `repo.advanced_security_disabled` | {% data variables.product.prodname_GH_advanced_security %} was disabled for a repository. | -| `repo.advanced_security_enabled` | {% data variables.product.prodname_GH_advanced_security %} was enabled for a repository. | -| `repo.advanced_security_policy_selected_member_disabled` | A repository administrator prevented {% data variables.product.prodname_GH_advanced_security %} features from being enabled for a repository. | -| `repo.advanced_security_policy_selected_member_enabled` | A repository administrator allowed {% data variables.product.prodname_GH_advanced_security %} features to be enabled for a repository. | -| `repo.archived` | 已存档仓库。 更多信息请参阅“[存档 {% data variables.product.prodname_dotcom %} 仓库](/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository)”。 | -| `repo.code_scanning_analysis_deleted` | Code scanning analysis for a repository was deleted. For more information, see "[Delete a code scanning analysis from a repository](/rest/reference/code-scanning#delete-a-code-scanning-analysis-from-a-repository)." | -| `repo.change_merge_setting` | Pull request merge options were changed for a repository. | -| `repo.clear_actions_settings` | A repository administrator cleared {% data variables.product.prodname_actions %} policy settings for a repository. | -| `repo.config` | A repository administrator blocked force pushes. 更多信息请参阅“[阻止对仓库进行强制推送](/enterprise/{{ currentVersion }}/admin/guides/developer-workflow/blocking-force-pushes-to-a-repository/)”。 | +| Action | Description +|--------|------------- +| `repo.access` | The visibility of a repository changed to private{%- ifversion ghes %}, public,{% endif %} or internal. +| `repo.actions_enabled` | {% data variables.product.prodname_actions %} was enabled for a repository. +| `repo.add_member` | A collaborator was added to a repository. +| `repo.add_topic` | A topic was added to a repository. +| `repo.advanced_security_disabled` | {% data variables.product.prodname_GH_advanced_security %} was disabled for a repository. +| `repo.advanced_security_enabled` | {% data variables.product.prodname_GH_advanced_security %} was enabled for a repository. +| `repo.advanced_security_policy_selected_member_disabled` | A repository administrator prevented {% data variables.product.prodname_GH_advanced_security %} features from being enabled for a repository. +| `repo.advanced_security_policy_selected_member_enabled` | A repository administrator allowed {% data variables.product.prodname_GH_advanced_security %} features to be enabled for a repository. +| `repo.archived` | A repository was archived. For more information, see "[Archiving a {% data variables.product.prodname_dotcom %} repository](/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository)." +| `repo.code_scanning_analysis_deleted` | Code scanning analysis for a repository was deleted. For more information, see "[Delete a code scanning analysis from a repository](/rest/reference/code-scanning#delete-a-code-scanning-analysis-from-a-repository)." +| `repo.change_merge_setting` | Pull request merge options were changed for a repository. +| `repo.clear_actions_settings` | A repository administrator cleared {% data variables.product.prodname_actions %} policy settings for a repository. +| `repo.config` | A repository administrator blocked force pushes. For more information, see [Blocking force pushes to a repository](/enterprise/{{ currentVersion }}/admin/guides/developer-workflow/blocking-force-pushes-to-a-repository/) to a repository. {%- ifversion fpt or ghec %} -| `repo.config.disable_collaborators_only` | The interaction limit for collaborators only was disabled. 更多信息请参阅“[限制存储库中的交互](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)”。 | `repo.config.disable_contributors_only` | The interaction limit for prior contributors only was disabled in a repository. 更多信息请参阅“[限制存储库中的交互](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)”。 | `repo.config.disable_sockpuppet_disallowed` | The interaction limit for existing users only was disabled in a repository. 更多信息请参阅“[限制存储库中的交互](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)”。 | `repo.config.enable_collaborators_only` | The interaction limit for collaborators only was enabled in a repository. Users that are not collaborators or organization members were unable to interact with a repository for a set duration. 更多信息请参阅“[限制存储库中的交互](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)”。 | `repo.config.enable_contributors_only` | The interaction limit for prior contributors only was enabled in a repository. Users that are not prior contributors, collaborators or organization members were unable to interact with a repository for a set duration. 更多信息请参阅“[限制存储库中的交互](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)”。 | `repo.config.enable_sockpuppet_disallowed` | The interaction limit for existing users was enabled in a repository. New users aren't able to interact with a repository for a set duration. Existing users of the repository, contributors, collaborators or organization members are able to interact with a repository. 更多信息请参阅“[限制存储库中的交互](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)”。 +| `repo.config.disable_collaborators_only` | The interaction limit for collaborators only was disabled. For more information, see "[Limiting interactions in your repository](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)." +| `repo.config.disable_contributors_only` | The interaction limit for prior contributors only was disabled in a repository. For more information, see "[Limiting interactions in your repository](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)." +| `repo.config.disable_sockpuppet_disallowed` | The interaction limit for existing users only was disabled in a repository. For more information, see "[Limiting interactions in your repository](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)." +| `repo.config.enable_collaborators_only` | The interaction limit for collaborators only was enabled in a repository. Users that are not collaborators or organization members were unable to interact with a repository for a set duration. For more information, see "[Limiting interactions in your repository](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)." +| `repo.config.enable_contributors_only` | The interaction limit for prior contributors only was enabled in a repository. Users that are not prior contributors, collaborators or organization members were unable to interact with a repository for a set duration. For more information, see "[Limiting interactions in your repository](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)." +| `repo.config.enable_sockpuppet_disallowed` | The interaction limit for existing users was enabled in a repository. New users aren't able to interact with a repository for a set duration. Existing users of the repository, contributors, collaborators or organization members are able to interact with a repository. For more information, see "[Limiting interactions in your repository](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-repository)." {%- endif %} {%- ifversion ghes %} -| `repo.config.disable_anonymous_git_access`| Anonymous Git read access was disabled for a repository. 更多信息请参阅“[为仓库启用匿名 Git 读取权限](/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/enabling-anonymous-git-read-access-for-a-repository)。” | `repo.config.enable_anonymous_git_access` | Anonymous Git read access was enabled for a repository. 更多信息请参阅“[为仓库启用匿名 Git 读取权限](/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/enabling-anonymous-git-read-access-for-a-repository)。” | `repo.config.lock_anonymous_git_access` | A repository's anonymous Git read access setting was locked, preventing repository administrators from changing (enabling or disabling) this setting. 更多信息请参阅“[阻止用户更改匿名 Git 读取权限](/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access)”。 | `repo.config.unlock_anonymous_git_access` | A repository's anonymous Git read access setting was unlocked, allowing repository administrators to change (enable or disable) this setting. 更多信息请参阅“[阻止用户更改匿名 Git 读取权限](/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access)”。 +| `repo.config.disable_anonymous_git_access`| Anonymous Git read access was disabled for a repository. For more information, see "[Enabling anonymous Git read access for a repository](/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/enabling-anonymous-git-read-access-for-a-repository)." +| `repo.config.enable_anonymous_git_access` | Anonymous Git read access was enabled for a repository. For more information, see "[Enabling anonymous Git read access for a repository](/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/enabling-anonymous-git-read-access-for-a-repository)." +| `repo.config.lock_anonymous_git_access` | A repository's anonymous Git read access setting was locked, preventing repository administrators from changing (enabling or disabling) this setting. For more information, see "[Preventing users from changing anonymous Git read access](/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access)." +| `repo.config.unlock_anonymous_git_access` | A repository's anonymous Git read access setting was unlocked, allowing repository administrators to change (enable or disable) this setting. For more information, see "[Preventing users from changing anonymous Git read access](/admin/guides/user-management/preventing-users-from-changing-anonymous-git-read-access)." {%- endif %} -| `repo.create` | A repository was created. | `repo.create_actions_secret` | A {% data variables.product.prodname_actions %} secret was created for a repository. 更多信息请参阅“[为仓库创建加密密码](/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository)”。 | `repo.create_integration_secret` | A {% data variables.product.prodname_dependabot %}{% ifversion fpt or ghec %} or {% data variables.product.prodname_codespaces %}{% endif %} integration secret was created for a repository. | `repo.destroy` | A repository was deleted. +| `repo.create` | A repository was created. +| `repo.create_actions_secret` | A {% data variables.product.prodname_actions %} secret was created for a repository. For more information, see "[Creating encrypted secrets for a repository](/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository)." +| `repo.create_integration_secret` | A {% data variables.product.prodname_dependabot %}{% ifversion fpt or ghec %} or {% data variables.product.prodname_codespaces %}{% endif %} integration secret was created for a repository. +| `repo.destroy` | A repository was deleted. {%- ifversion ghes %} -| `repo.disk_archive` | A repository was archived on disk. 更多信息请参阅“[存档仓库](/repositories/archiving-a-github-repository/archiving-repositories)”。 +| `repo.disk_archive` | A repository was archived on disk. For more information, see "[Archiving repositories](/repositories/archiving-a-github-repository/archiving-repositories)." {%- endif %} -| `repo.download_zip` | A source code archive of a repository was downloaded as a ZIP file. | `repo.pages_cname` | A {% data variables.product.prodname_pages %} custom domain was modified in a repository. | `repo.pages_create` | A {% data variables.product.prodname_pages %} site was created. | `repo.pages_destroy` | A {% data variables.product.prodname_pages %} site was deleted. | `repo.pages_https_redirect_disabled` | HTTPS redirects were disabled for a {% data variables.product.prodname_pages %} site. | `repo.pages_https_redirect_enabled` | HTTPS redirects were enabled for a {% data variables.product.prodname_pages %} site. | `repo.pages_source` | A {% data variables.product.prodname_pages %} source was modified. | `repo.pages_private` | A {% data variables.product.prodname_pages %} site visibility was changed to private. | `repo.pages_public` | A {% data variables.product.prodname_pages %} site visibility was changed to public. | `repo.register_self_hosted_runner` | A new self-hosted runner was registered. 更多信息请参阅“[将自托管运行器添加到仓库](/actions/hosting-your-own-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository)”。 | `repo.remove_self_hosted_runner` | A self-hosted runner was removed. 更多信息请参阅“[从仓库移除运行器](/actions/hosting-your-own-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository)”。 | `repo.remove_actions_secret` | A {% data variables.product.prodname_actions %} secret was deleted for a repository. | `repo.remove_integration_secret` | A {% data variables.product.prodname_dependabot %}{% ifversion fpt or ghec %} or {% data variables.product.prodname_codespaces %}{% endif %} integration secret was deleted for a repository. | `repo.remove_member` | A collaborator was removed from a repository. | `repo.remove_topic` | A topic was removed from a repository. | `repo.rename` | A repository was renamed. +| `repo.download_zip` | A source code archive of a repository was downloaded as a ZIP file. +| `repo.pages_cname` | A {% data variables.product.prodname_pages %} custom domain was modified in a repository. +| `repo.pages_create` | A {% data variables.product.prodname_pages %} site was created. +| `repo.pages_destroy` | A {% data variables.product.prodname_pages %} site was deleted. +| `repo.pages_https_redirect_disabled` | HTTPS redirects were disabled for a {% data variables.product.prodname_pages %} site. +| `repo.pages_https_redirect_enabled` | HTTPS redirects were enabled for a {% data variables.product.prodname_pages %} site. +| `repo.pages_source` | A {% data variables.product.prodname_pages %} source was modified. +| `repo.pages_private` | A {% data variables.product.prodname_pages %} site visibility was changed to private. +| `repo.pages_public` | A {% data variables.product.prodname_pages %} site visibility was changed to public. +| `repo.register_self_hosted_runner` | A new self-hosted runner was registered. For more information, see "[Adding a self-hosted runner to a repository](/actions/hosting-your-own-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository)." +| `repo.remove_self_hosted_runner` | A self-hosted runner was removed. For more information, see "[Removing a runner from a repository](/actions/hosting-your-own-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository)." +| `repo.remove_actions_secret` | A {% data variables.product.prodname_actions %} secret was deleted for a repository. +| `repo.remove_integration_secret` | A {% data variables.product.prodname_dependabot %}{% ifversion fpt or ghec %} or {% data variables.product.prodname_codespaces %}{% endif %} integration secret was deleted for a repository. +| `repo.remove_member` | A collaborator was removed from a repository. +| `repo.remove_topic` | A topic was removed from a repository. +| `repo.rename` | A repository was renamed. {%- ifversion fpt or ghec %} | `repo.set_actions_fork_pr_approvals_policy` | The setting for requiring approvals for workflows from public forks was changed for a repository. For more information, see "[Configuring required approval for workflows from public forks](/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-required-approval-for-workflows-from-public-forks)." {%- endif %} -| `repo.set_actions_retention_limit` | The retention period for {% data variables.product.prodname_actions %} artifacts and logs in a repository was changed. 更多信息请参阅“[配置 {% data variables.product.prodname_actions %} 构件和日志在您的仓库中的保留期](/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-repository)”。 +| `repo.set_actions_retention_limit` | The retention period for {% data variables.product.prodname_actions %} artifacts and logs in a repository was changed. For more information, see "[Configuring the retention period for {% data variables.product.prodname_actions %} artifacts and logs in your repository](/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-repository)." {%- ifversion fpt or ghec or ghes > 3.1 or ghae %} -| `repo.self_hosted_runner_online` | The runner application was started. 只能使用 REST API 查看;在 UI 或 JSON/CSV 导出中不可见。 更多信息请参阅“[检查自托管运行器的状态](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)”。 | `repo.self_hosted_runner_offline` | The runner application was stopped. 只能使用 REST API 查看;在 UI 或 JSON/CSV 导出中不可见。 更多信息请参阅“[检查自托管运行器的状态](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)”。 | `repo.self_hosted_runner_updated` | The runner application was updated. 可以使用 REST API 和 UI 查看;在 JSON /CSV 导出中不可见。 更多信息请参阅“[关于自托管运行器](/actions/hosting-your-own-runners/about-self-hosted-runners#about-self-hosted-runners)”。 +| `repo.self_hosted_runner_online` | The runner application was started. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)." +| `repo.self_hosted_runner_offline` | The runner application was stopped. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)." +| `repo.self_hosted_runner_updated` | The runner application was updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export. For more information, see "[About self-hosted runners](/actions/hosting-your-own-runners/about-self-hosted-runners#about-self-hosted-runners)." {%- endif %} -| `repo.staff_unlock` | An enterprise administrator or GitHub staff (with permission from a repository administrator) temporarily unlocked the repository. | `repo.transfer` | A user accepted a request to receive a transferred repository. | `repo.transfer_outgoing` | A repository was transferred to another repository network. | `repo.transfer_start` | A user sent a request to transfer a repository to another user or organization. | `repo.unarchived` | A repository was unarchived. 更多信息请参阅“[存档 {% data variables.product.prodname_dotcom %} 仓库](/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository)”。 | `repo.update_actions_settings` | A repository administrator changed {% data variables.product.prodname_actions %} policy settings for a repository. | `repo.update_actions_secret` | A {% data variables.product.prodname_actions %} secret was updated. | `repo.update_actions_access_settings` | The setting to control how a repository was used by {% data variables.product.prodname_actions %} workflows in other repositories was changed. | `repo.update_default_branch` | The default branch for a repository was changed. | `repo.update_integration_secret` | A {% data variables.product.prodname_dependabot %} or {% data variables.product.prodname_codespaces %} integration secret was updated for a repository. | `repo.update_member` | A user's permission to a repository was changed. +| `repo.staff_unlock` | An enterprise administrator or GitHub staff (with permission from a repository administrator) temporarily unlocked the repository. +| `repo.transfer` | A user accepted a request to receive a transferred repository. +| `repo.transfer_outgoing` | A repository was transferred to another repository network. +| `repo.transfer_start` | A user sent a request to transfer a repository to another user or organization. +| `repo.unarchived` | A repository was unarchived. For more information, see "[Archiving a {% data variables.product.prodname_dotcom %} repository](/github/creating-cloning-and-archiving-repositories/archiving-a-github-repository)." +| `repo.update_actions_settings` | A repository administrator changed {% data variables.product.prodname_actions %} policy settings for a repository. +| `repo.update_actions_secret` | A {% data variables.product.prodname_actions %} secret was updated. +| `repo.update_actions_access_settings` | The setting to control how a repository was used by {% data variables.product.prodname_actions %} workflows in other repositories was changed. +| `repo.update_default_branch` | The default branch for a repository was changed. +| `repo.update_integration_secret` | A {% data variables.product.prodname_dependabot %} or {% data variables.product.prodname_codespaces %} integration secret was updated for a repository. +| `repo.update_member` | A user's permission to a repository was changed. {%- ifversion fpt or ghec %} -### `repository_advisory` 类操作 +### `repository_advisory` category actions -| 操作 | 描述 | -| -------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `repository_advisory.close` | Someone closed a security advisory. 更多信息请参阅“[关于 {% data variables.product.prodname_dotcom %} 安全通告](/github/managing-security-vulnerabilities/about-github-security-advisories)”。 | -| `repository_advisory.cve_request` | Someone requested a CVE (Common Vulnerabilities and Exposures) number from {% data variables.product.prodname_dotcom %} for a draft security advisory. | -| `repository_advisory.github_broadcast` | {% data variables.product.prodname_dotcom %} made a security advisory public in the {% data variables.product.prodname_advisory_database %}. | -| `repository_advisory.github_withdraw` | {% data variables.product.prodname_dotcom %} withdrew a security advisory that was published in error. | -| `repository_advisory.open` | Someone opened a draft security advisory. | -| `repository_advisory.publish` | Someone publishes a security advisory. | -| `repository_advisory.reopen` | Someone reopened as draft security advisory. | -| `repository_advisory.update` | Someone edited a draft or published security advisory. | +| Action | Description +|--------|------------- +| `repository_advisory.close` | Someone closed a security advisory. For more information, see "[About {% data variables.product.prodname_dotcom %} Security Advisories](/github/managing-security-vulnerabilities/about-github-security-advisories)." +| `repository_advisory.cve_request` | Someone requested a CVE (Common Vulnerabilities and Exposures) number from {% data variables.product.prodname_dotcom %} for a draft security advisory. +| `repository_advisory.github_broadcast` | {% data variables.product.prodname_dotcom %} made a security advisory public in the {% data variables.product.prodname_advisory_database %}. +| `repository_advisory.github_withdraw` | {% data variables.product.prodname_dotcom %} withdrew a security advisory that was published in error. +| `repository_advisory.open` | Someone opened a draft security advisory. +| `repository_advisory.publish` | Someone publishes a security advisory. +| `repository_advisory.reopen` | Someone reopened as draft security advisory. +| `repository_advisory.update` | Someone edited a draft or published security advisory. -### `repository_content_analysis` 类操作 +### `repository_content_analysis` category actions -| 操作 | 描述 | -| ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `repository_content_analysis.enable` | An organization owner or repository administrator [enabled data use settings for a private repository](/get-started/privacy-on-github/managing-data-use-settings-for-your-private-repository). | -| `repository_content_analysis.disable` | An organization owner or repository administrator [disabled data use settings for a private repository](/get-started/privacy-on-github/managing-data-use-settings-for-your-private-repository). | +| Action | Description +|--------|------------- +| `repository_content_analysis.enable` | An organization owner or repository administrator [enabled data use settings for a private repository](/get-started/privacy-on-github/managing-data-use-settings-for-your-private-repository). +| `repository_content_analysis.disable` | An organization owner or repository administrator [disabled data use settings for a private repository](/get-started/privacy-on-github/managing-data-use-settings-for-your-private-repository). -### `repository_dependency_graph` 类操作 +### `repository_dependency_graph` category actions -| 操作 | 描述 | -| ------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `repository_dependency_graph.disable` | A repository owner or administrator disabled the dependency graph for a private repository. 更多信息请参阅“[关于依赖关系图](/github/visualizing-repository-data-with-graphs/about-the-dependency-graph)”。 | -| `repository_dependency_graph.enable` | A repository owner or administrator enabled the dependency graph for a private repository. | +| Action | Description +|--------|------------- +| `repository_dependency_graph.disable` | A repository owner or administrator disabled the dependency graph for a private repository. For more information, see "[About the dependency graph](/github/visualizing-repository-data-with-graphs/about-the-dependency-graph)." +| `repository_dependency_graph.enable` | A repository owner or administrator enabled the dependency graph for a private repository. {%- endif %} ### `repository_image` category actions -| 操作 | 描述 | -| -------------------------- | ------------------------------------------------ | -| `repository_image.create` | An image to represent a repository was uploaded. | -| `repository_image.destroy` | An image to represent a repository was deleted. | +| Action | Description +|--------|------------- +| `repository_image.create` | An image to represent a repository was uploaded. +| `repository_image.destroy` | An image to represent a repository was deleted. ### `repository_invitation` category actions -| 操作 | 描述 | -| ------------------------------ | ------------------------------------------------ | -| `repository_invitation.accept` | An invitation to join a repository was accepted. | -| `repository_invitation.create` | An invitation to join a repository was sent. | -| `repository_invitation.reject` | An invitation to join a repository was canceled. | +| Action | Description +|--------|------------- +| `repository_invitation.accept` | An invitation to join a repository was accepted. +| `repository_invitation.create` | An invitation to join a repository was sent. +| `repository_invitation.reject` | An invitation to join a repository was canceled. ### `repository_projects_change` category actions -| 操作 | 描述 | -| ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `repository_projects_change.clear` | The repository projects policy was removed for an organization, or all organizations in the enterprise. Organization admins can now control their repository projects settings. For more information, see "[Enforcing project board policies in your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise)." | -| `repository_projects_change.disable` | Repository projects were disabled for a repository, all repositories in an organization, or all organizations in an enterprise. | -| `repository_projects_change.enable` | Repository projects were enabled for a repository, all repositories in an organization, or all organizations in an enterprise. | +| Action | Description +|--------|------------- +| `repository_projects_change.clear` | The repository projects policy was removed for an organization, or all organizations in the enterprise. Organization admins can now control their repository projects settings. For more information, see "[Enforcing project board policies in your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-project-board-policies-in-your-enterprise)." +| `repository_projects_change.disable` | Repository projects were disabled for a repository, all repositories in an organization, or all organizations in an enterprise. +| `repository_projects_change.enable` | Repository projects were enabled for a repository, all repositories in an organization, or all organizations in an enterprise. {%- ifversion ghec or ghes or ghae %} -### `repository_secret_scanning` 类操作 +### `repository_secret_scanning` category actions -| 操作 | 描述 | -| ------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `repository_secret_scanning.disable` | A repository owner or administrator disabled secret scanning for a {% ifversion ghec %}private or internal {% endif %}repository. 更多信息请参阅“[关于密钥扫描](/github/administering-a-repository/about-secret-scanning)”。 | -| `repository_secret_scanning.enable` | A repository owner or administrator enabled secret scanning for a {% ifversion ghec %}private or internal {% endif %}repository. | +| Action | Description +|--------|------------- +| `repository_secret_scanning.disable` | A repository owner or administrator disabled secret scanning for a {% ifversion ghec %}private or internal {% endif %}repository. For more information, see "[About secret scanning](/github/administering-a-repository/about-secret-scanning)." +| `repository_secret_scanning.enable` | A repository owner or administrator enabled secret scanning for a {% ifversion ghec %}private or internal {% endif %}repository. {%- endif %} {%- if secret-scanning-audit-log-custom-patterns %} -### `repository_secret_scanning_custom_pattern` 类操作 +### `repository_secret_scanning_custom_pattern` category actions -| 操作 | 描述 | -| -------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `repository_secret_scanning_custom_pattern.create` | A custom pattern is published for secret scanning in a repository. 更多信息请参阅“[定义机密扫描的自定义模式](/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository)”。 | -| `repository_secret_scanning_custom_pattern.delete` | A custom pattern is removed from secret scanning in a repository. 更多信息请参阅“[定义机密扫描的自定义模式](/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#removing-a-custom-pattern)”。 | -| `repository_secret_scanning_custom_pattern.update` | Changes to a custom pattern are saved for secret scanning in a repository. 更多信息请参阅“[定义机密扫描的自定义模式](/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#editing-a-custom-pattern)”。 | +| Action | Description +|------------------|------------------- +| `repository_secret_scanning_custom_pattern.create` | A custom pattern is published for secret scanning in a repository. For more information, see "[Defining custom patterns for secret scanning](/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#defining-a-custom-pattern-for-a-repository)." +| `repository_secret_scanning_custom_pattern.delete` | A custom pattern is removed from secret scanning in a repository. For more information, see "[Defining custom patterns for secret scanning](/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#removing-a-custom-pattern)." +| `repository_secret_scanning_custom_pattern.update` | Changes to a custom pattern are saved for secret scanning in a repository. For more information, see "[Defining custom patterns for secret scanning](/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning#editing-a-custom-pattern)." -### `repository_secret_scanning_push_protection` 类操作 +### `repository_secret_scanning_push_protection` category actions -| 操作 | 描述 | -| ---------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `repository_secret_scanning_push_protection.disable` | A repository owner or administrator disabled secret scanning for a repository. 更多信息请参阅“[使用机密扫描保护推送](/code-security/secret-scanning/protecting-pushes-with-secret-scanning)”。 | -| `repository_secret_scanning_push_protection.enable` | A repository owner or administrator enabled secret scanning for a repository. 更多信息请参阅“[使用机密扫描保护推送](/code-security/secret-scanning/protecting-pushes-with-secret-scanning)”。 | +| Action | Description +|------------------|------------------- +| `repository_secret_scanning_push_protection.disable` | A repository owner or administrator disabled secret scanning for a repository. For more information, see "[Protecting pushes with secret scanning](/code-security/secret-scanning/protecting-pushes-with-secret-scanning)." +| `repository_secret_scanning_push_protection.enable` | A repository owner or administrator enabled secret scanning for a repository. For more information, see "[Protecting pushes with secret scanning](/code-security/secret-scanning/protecting-pushes-with-secret-scanning)." {%- endif %} ### `repository_visibility_change` category actions -| 操作 | 描述 | -| -------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `repository_visibility_change.clear` | The repository visibility change setting was cleared for an organization or enterprise. For more information, see "[Restricting repository visibility changes in your organization](/organizations/managing-organization-settings/restricting-repository-visibility-changes-in-your-organization)" and "[Enforcing a policy for changes to repository visibility](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-changes-to-repository-visibility) for an enterprise." | -| `repository_visibility_change.disable` | The ability for enterprise members to update a repository's visibility was disabled. Members are unable to change repository visibilities in an organization, or all organizations in an enterprise. | -| `repository_visibility_change.enable` | The ability for enterprise members to update a repository's visibility was enabled. Members are able to change repository visibilities in an organization, or all organizations in an enterprise. | +| Action | Description +|--------|------------- +| `repository_visibility_change.clear` | The repository visibility change setting was cleared for an organization or enterprise. For more information, see "[Restricting repository visibility changes in your organization](/organizations/managing-organization-settings/restricting-repository-visibility-changes-in-your-organization)" and "[Enforcing a policy for changes to repository visibility](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-repository-management-policies-in-your-enterprise#enforcing-a-policy-for-changes-to-repository-visibility) for an enterprise." +| `repository_visibility_change.disable` | The ability for enterprise members to update a repository's visibility was disabled. Members are unable to change repository visibilities in an organization, or all organizations in an enterprise. +| `repository_visibility_change.enable` | The ability for enterprise members to update a repository's visibility was enabled. Members are able to change repository visibilities in an organization, or all organizations in an enterprise. {%- ifversion fpt or ghec or ghes or ghae-issue-4864 %} -### `repository_vulnerability_alert` 类操作 +### `repository_vulnerability_alert` category actions -| 操作 | 描述 | -| ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `repository_vulnerability_alert.create` | {% data variables.product.product_name %} created a {% data variables.product.prodname_dependabot %} alert for a repository that uses a vulnerable dependency. 更多信息请参阅“[关于易受攻击的依赖项的警报](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies)”。 | -| `repository_vulnerability_alert.dismiss` | An organization owner or repository administrator dismissed a {% data variables.product.prodname_dependabot %} alert about a vulnerable dependency. | -| `repository_vulnerability_alert.resolve` | Someone with write access to a repository pushed changes to update and resolve a vulnerability in a project dependency. | +| Action | Description +|--------|------------- +| `repository_vulnerability_alert.create` | {% data variables.product.product_name %} created a {% data variables.product.prodname_dependabot %} alert for a repository that uses a vulnerable dependency. For more information, see "[About alerts for vulnerable dependencies](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies)." +| `repository_vulnerability_alert.dismiss` | An organization owner or repository administrator dismissed a {% data variables.product.prodname_dependabot %} alert about a vulnerable dependency. +| `repository_vulnerability_alert.resolve` | Someone with write access to a repository pushed changes to update and resolve a vulnerability in a project dependency. {%- endif %} {%- ifversion fpt or ghec %} -### `repository_vulnerability_alerts` 类操作 +### `repository_vulnerability_alerts` category actions -| 操作 | 描述 | -| -------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `repository_vulnerability_alerts.authorized_users_teams` | An organization owner or repository administrator updated the list of people or teams authorized to receive {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies in the repository. 更多信息请参阅“[管理仓库的安全和分析设置](/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository#granting-access-to-security-alerts)”。 | -| `repository_vulnerability_alerts.disable` | A repository owner or repository administrator disabled {% data variables.product.prodname_dependabot_alerts %}. | -| `repository_vulnerability_alerts.enable` | A repository owner or repository administrator enabled {% data variables.product.prodname_dependabot_alerts %}. | +| Action | Description +|--------|------------- +| `repository_vulnerability_alerts.authorized_users_teams` | An organization owner or repository administrator updated the list of people or teams authorized to receive {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies in the repository. For more information, see "[Managing security and analysis settings for your repository](/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository#granting-access-to-security-alerts)." +| `repository_vulnerability_alerts.disable` | A repository owner or repository administrator disabled {% data variables.product.prodname_dependabot_alerts %}. +| `repository_vulnerability_alerts.enable` | A repository owner or repository administrator enabled {% data variables.product.prodname_dependabot_alerts %}. {%- endif %} ### `required_status_check` category actions -| 操作 | 描述 | -| ------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `required_status_check.create` | A status check was marked as required for a protected branch. For more information, see "[Require status checks before merging](/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#require-status-checks-before-merging)." | -| `required_status_check.destroy` | A status check was no longer marked as required for a protected branch. For more information, see "[Require status checks before merging](/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#require-status-checks-before-merging)." | +| Action | Description +|--------|------------- +| `required_status_check.create` | A status check was marked as required for a protected branch. For more information, see "[Require status checks before merging](/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#require-status-checks-before-merging)." +| `required_status_check.destroy` | A status check was no longer marked as required for a protected branch. For more information, see "[Require status checks before merging](/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#require-status-checks-before-merging)." {%- ifversion ghec or ghes > 3.1 %} ### `restrict_notification_delivery` category actions -| 操作 | 描述 | -| ---------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `restrict_notification_delivery.enable` | Email notification restrictions for an organization or enterprise were enabled. For more information, see "[Restricting email notifications for your organization](/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization)" and "[Restricting email notifications for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise)." | -| `restrict_notification_delivery.disable` | Email notification restrictions for an organization or enterprise were disabled. For more information, see "[Restricting email notifications for your organization](/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization)" and "[Restricting email notifications for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise)." | +| Action | Description +|--------|------------- +| `restrict_notification_delivery.enable` | Email notification restrictions for an organization or enterprise were enabled. For more information, see "[Restricting email notifications for your organization](/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization)" and "[Restricting email notifications for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise)." +| `restrict_notification_delivery.disable` | Email notification restrictions for an organization or enterprise were disabled. For more information, see "[Restricting email notifications for your organization](/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization)" and "[Restricting email notifications for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/restricting-email-notifications-for-your-enterprise)." {%- endif %} {%- ifversion ghec or ghes > 3.4 or ghae-issue-6271 %} -### `role` 类操作 +### `role` category actions -| 操作 | 描述 | -| --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `create` | An organization owner created a new custom repository role. 更多信息请参阅“[管理组织的自定义仓库角色](/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization)”。 | -| `destroy` | An organization owner deleted a custom repository role. 更多信息请参阅“[管理组织的自定义仓库角色](/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization)”。 | -| `update` | An organization owner edited an existing custom repository role. 更多信息请参阅“[管理组织的自定义仓库角色](/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization)”。 | +| Action | Description +|--------|------------- +|`create` | An organization owner created a new custom repository role. For more information, see "[Managing custom repository roles for an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization)." +|`destroy` | An organization owner deleted a custom repository role. For more information, see "[Managing custom repository roles for an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization)." +|`update` | An organization owner edited an existing custom repository role. For more information, see "[Managing custom repository roles for an organization](/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization)." {%- endif %} {%- ifversion ghec or ghes or ghae %} -### `secret_scanning` 类操作 +### `secret_scanning` category actions -| 操作 | 描述 | -| ------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `secret_scanning.disable` | An organization owner disabled secret scanning for all existing{% ifversion ghec %} private or internal{% endif %} repositories. 更多信息请参阅“[关于密钥扫描](/github/administering-a-repository/about-secret-scanning)”。 | -| `secret_scanning.enable` | An organization owner enabled secret scanning for all existing{% ifversion ghec %} private or internal{% endif %} repositories. | +| Action | Description +|--------|------------- +| `secret_scanning.disable` | An organization owner disabled secret scanning for all existing{% ifversion ghec %} private or internal{% endif %} repositories. For more information, see "[About secret scanning](/github/administering-a-repository/about-secret-scanning)." +| `secret_scanning.enable` | An organization owner enabled secret scanning for all existing{% ifversion ghec %} private or internal{% endif %} repositories. -### `secret_scanning_new_repos` 类操作 +### `secret_scanning_new_repos` category actions -| 操作 | 描述 | -| ----------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `secret_scanning_new_repos.disable` | An organization owner disabled secret scanning for all new{% ifversion ghec %} private or internal{% endif %} repositories. 更多信息请参阅“[关于密钥扫描](/github/administering-a-repository/about-secret-scanning)”。 | -| `secret_scanning_new_repos.enable` | An organization owner enabled secret scanning for all new{% ifversion ghec %} private or internal{% endif %} repositories. | +| Action | Description +|--------|------------- +| `secret_scanning_new_repos.disable` | An organization owner disabled secret scanning for all new{% ifversion ghec %} private or internal{% endif %} repositories. For more information, see "[About secret scanning](/github/administering-a-repository/about-secret-scanning)." +| `secret_scanning_new_repos.enable` | An organization owner enabled secret scanning for all new{% ifversion ghec %} private or internal{% endif %} repositories. {%- endif %} {%- ifversion ghec or ghes or ghae %} ### `security_key` category actions -| 操作 | 描述 | -| ----------------------- | --------------------------------------------- | -| `security_key.register` | A security key was registered for an account. | -| `security_key.remove` | A security key was removed from an account. | +| Action | Description +|--------|------------- +| `security_key.register` | A security key was registered for an account. +| `security_key.remove` | A security key was removed from an account. {%- endif %} {%- ifversion fpt or ghec %} -### `sponsors` 类操作 +### `sponsors` category actions -| 操作 | 描述 | -| ------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `sponsors.agreement_sign` | A {% data variables.product.prodname_sponsors %} agreement was signed on behalf of an organization. | -| `sponsors.custom_amount_settings_change` | Custom amounts for {% data variables.product.prodname_sponsors %} were enabled or disabled, or the suggested custom amount was changed. For more information, see "[Managing your sponsorship tiers](/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers)." | -| `sponsors.fiscal_host_change` | The fiscal host for a {% data variables.product.prodname_sponsors %} listing was updated. | -| `sponsors.withdraw_agreement_signature` | A signature was withdrawn from a {% data variables.product.prodname_sponsors %} agreement that applies to an organization. | -| `sponsors.repo_funding_links_file_action` | The FUNDING file in a repository was changed. 更多信息请参阅“[在仓库中显示赞助按钮](/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository)”。 | -| `sponsors.sponsor_sponsorship_cancel` | A sponsorship was canceled. For more information, see "[Downgrading a sponsorship](/billing/managing-billing-for-github-sponsors/downgrading-a-sponsorship)." | -| `sponsors.sponsor_sponsorship_create` | A sponsorship was created, by sponsoring an account. For more information, see "[Sponsoring an open source contributor](/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor)." | -| `sponsors.sponsor_sponsorship_payment_complete` | After you sponsor an account and a payment has been processed, the sponsorship payment was marked as complete. For more information, see "[Sponsoring an open source contributor](/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor)." | -| `sponsors.sponsor_sponsorship_preference_change` | The option to receive email updates from a sponsored account was changed. 更多信息请参阅“[管理您的赞助](/sponsors/sponsoring-open-source-contributors/managing-your-sponsorship)”。 | -| `sponsors.sponsor_sponsorship_tier_change` | A sponsorship was upgraded or downgraded. 更多信息请参阅“[升级赞助](/billing/managing-billing-for-github-sponsors/upgrading-a-sponsorship)”和“[降级赞助](/billing/managing-billing-for-github-sponsors/downgrading-a-sponsorship)”。 | -| `sponsors.sponsored_developer_approve` | A {% data variables.product.prodname_sponsors %} account was approved. For more information, see "[Setting up {% data variables.product.prodname_sponsors %} for your organization](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization)." | -| `sponsors.sponsored_developer_create` | A {% data variables.product.prodname_sponsors %} account was created. For more information, see "[Setting up {% data variables.product.prodname_sponsors %} for your organization](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization)." | -| `sponsors.sponsored_developer_disable` | A {% data variables.product.prodname_sponsors %} account was disabled. | -| `sponsors.sponsored_developer_profile_update` | You edit a sponsored organization profile. For more information, see "[Editing your profile details for {% data variables.product.prodname_sponsors %}](/sponsors/receiving-sponsorships-through-github-sponsors/editing-your-profile-details-for-github-sponsors)." | -| `sponsors.sponsored_developer_redraft` | A {% data variables.product.prodname_sponsors %} account was returned to draft state from approved state. | -| `sponsors.sponsored_developer_request_approval` | An application for {% data variables.product.prodname_sponsors %} was submitted for approval. For more information, see "[Setting up {% data variables.product.prodname_sponsors %} for your organization](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization)." | -| `sponsors.sponsored_developer_tier_description_update` | The description for a sponsorship tier was changed. For more information, see "[Managing your sponsorship tiers](/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers)." | -| `sponsors.update_tier_welcome_message` | The welcome message for a {% data variables.product.prodname_sponsors %} tier for an organization was updated. | -| `sponsors.update_tier_repository` | A {% data variables.product.prodname_sponsors %} tier changed access for a repository. | +| Action | Description +|--------|------------- +| `sponsors.agreement_sign` | A {% data variables.product.prodname_sponsors %} agreement was signed on behalf of an organization. +| `sponsors.custom_amount_settings_change` | Custom amounts for {% data variables.product.prodname_sponsors %} were enabled or disabled, or the suggested custom amount was changed. For more information, see "[Managing your sponsorship tiers](/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers)." +| `sponsors.fiscal_host_change` | The fiscal host for a {% data variables.product.prodname_sponsors %} listing was updated. +| `sponsors.withdraw_agreement_signature` | A signature was withdrawn from a {% data variables.product.prodname_sponsors %} agreement that applies to an organization. +| `sponsors.repo_funding_links_file_action` | The FUNDING file in a repository was changed. For more information, see "[Displaying a sponsor button in your repository](/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository)." +| `sponsors.sponsor_sponsorship_cancel` | A sponsorship was canceled. For more information, see "[Downgrading a sponsorship](/billing/managing-billing-for-github-sponsors/downgrading-a-sponsorship)." +| `sponsors.sponsor_sponsorship_create` | A sponsorship was created, by sponsoring an account. For more information, see "[Sponsoring an open source contributor](/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor)." +| `sponsors.sponsor_sponsorship_payment_complete` | After you sponsor an account and a payment has been processed, the sponsorship payment was marked as complete. For more information, see "[Sponsoring an open source contributor](/sponsors/sponsoring-open-source-contributors/sponsoring-an-open-source-contributor)." +| `sponsors.sponsor_sponsorship_preference_change` | The option to receive email updates from a sponsored account was changed. For more information, see "[Managing your sponsorship](/sponsors/sponsoring-open-source-contributors/managing-your-sponsorship)." +| `sponsors.sponsor_sponsorship_tier_change` | A sponsorship was upgraded or downgraded. For more information, see "[Upgrading a sponsorship](/billing/managing-billing-for-github-sponsors/upgrading-a-sponsorship)" and "[Downgrading a sponsorship](/billing/managing-billing-for-github-sponsors/downgrading-a-sponsorship)." +| `sponsors.sponsored_developer_approve` | A {% data variables.product.prodname_sponsors %} account was approved. For more information, see "[Setting up {% data variables.product.prodname_sponsors %} for your organization](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization)." +| `sponsors.sponsored_developer_create` | A {% data variables.product.prodname_sponsors %} account was created. For more information, see "[Setting up {% data variables.product.prodname_sponsors %} for your organization](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization)." +| `sponsors.sponsored_developer_disable` | A {% data variables.product.prodname_sponsors %} account was disabled. +| `sponsors.sponsored_developer_profile_update` | You edit a sponsored organization profile. For more information, see "[Editing your profile details for {% data variables.product.prodname_sponsors %}](/sponsors/receiving-sponsorships-through-github-sponsors/editing-your-profile-details-for-github-sponsors)." +| `sponsors.sponsored_developer_redraft` | A {% data variables.product.prodname_sponsors %} account was returned to draft state from approved state. +| `sponsors.sponsored_developer_request_approval` | An application for {% data variables.product.prodname_sponsors %} was submitted for approval. For more information, see "[Setting up {% data variables.product.prodname_sponsors %} for your organization](/sponsors/receiving-sponsorships-through-github-sponsors/setting-up-github-sponsors-for-your-organization)." +| `sponsors.sponsored_developer_tier_description_update` | The description for a sponsorship tier was changed. For more information, see "[Managing your sponsorship tiers](/sponsors/receiving-sponsorships-through-github-sponsors/managing-your-sponsorship-tiers)." +| `sponsors.update_tier_welcome_message` | The welcome message for a {% data variables.product.prodname_sponsors %} tier for an organization was updated. +| `sponsors.update_tier_repository` | A {% data variables.product.prodname_sponsors %} tier changed access for a repository. {%- endif %} {%- ifversion ghec or ghes or ghae %} ### `ssh_certificate_authority` category actions -| 操作 | 描述 | -| ----------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| `ssh_certificate_authority.create` | An SSH certificate authority for an organization or enterprise was created. For more information, see "[Managing your organization's SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" and "[Managing SSH certificate authorities for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)." | -| `ssh_certificate_authority.destroy` | An SSH certificate authority for an organization or enterprise was deleted. For more information, see "[Managing your organization's SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" and "[Managing SSH certificate authorities for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)." | +| Action | Description +|--------|------------- +| `ssh_certificate_authority.create` | An SSH certificate authority for an organization or enterprise was created. For more information, see "[Managing your organization's SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" and "[Managing SSH certificate authorities for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)." +| `ssh_certificate_authority.destroy` | An SSH certificate authority for an organization or enterprise was deleted. For more information, see "[Managing your organization's SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" and "[Managing SSH certificate authorities for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)." ### `ssh_certificate_requirement` category actions -| 操作 | 描述 | -| ------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `ssh_certificate_requirement.enable` | The requirement for members to use SSH certificates to access an organization resources was enabled. For more information, see "[Managing your organization's SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" and "[Managing SSH certificate authorities for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)." | -| `ssh_certificate_requirement.disable` | The requirement for members to use SSH certificates to access an organization resources was disabled. For more information, see "[Managing your organization's SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" and "[Managing SSH certificate authorities for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)." | +| Action | Description +|--------|------------- +| `ssh_certificate_requirement.enable` | The requirement for members to use SSH certificates to access an organization resources was enabled. For more information, see "[Managing your organization's SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" and "[Managing SSH certificate authorities for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)." +| `ssh_certificate_requirement.disable` | The requirement for members to use SSH certificates to access an organization resources was disabled. For more information, see "[Managing your organization's SSH certificate authorities](/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities)" and "[Managing SSH certificate authorities for your enterprise](/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise#managing-ssh-certificate-authorities-for-your-enterprise)." {%- endif %} ### `staff` category actions -| 操作 | 描述 | -| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `staff.disable_repo` | An organization{% ifversion ghes %}, repository or site{% else %} or repository{% endif %} administrator disabled access to a repository and all of its forks. | -| `staff.enable_repo` | An organization{% ifversion ghes %}, repository or site{% else %} or repository{% endif %} administrator re-enabled access to a repository and all of its forks. | +| Action | Description +|--------|------------- +| `staff.disable_repo` | An organization{% ifversion ghes %}, repository or site{% else %} or repository{% endif %} administrator disabled access to a repository and all of its forks. +| `staff.enable_repo` | An organization{% ifversion ghes %}, repository or site{% else %} or repository{% endif %} administrator re-enabled access to a repository and all of its forks. {%- ifversion ghes > 3.2 or ghae %} -| `staff.exit_fake_login` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} ended an impersonation session on {% data variables.product.product_name %}. | `staff.fake_login` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} signed into {% data variables.product.product_name %} as another user. +| `staff.exit_fake_login` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} ended an impersonation session on {% data variables.product.product_name %}. +| `staff.fake_login` | An enterprise owner{% ifversion ghes %} or site administrator{% endif %} signed into {% data variables.product.product_name %} as another user. {%- endif %} -| `staff.repo_lock` | An organization{% ifversion ghes %}, repository or site{% else %} or repository{% endif %} administrator locked (temporarily gained full access to) a user's private repository. | `staff.repo_unlock` | An organization{% ifversion ghes %}, repository or site{% else %} or repository{% endif %} administrator unlocked (ended their temporary access to) a user's private repository. +| `staff.repo_lock` | An organization{% ifversion ghes %}, repository or site{% else %} or repository{% endif %} administrator locked (temporarily gained full access to) a user's private repository. +| `staff.repo_unlock` | An organization{% ifversion ghes %}, repository or site{% else %} or repository{% endif %} administrator unlocked (ended their temporary access to) a user's private repository. {%- ifversion ghes %} | `staff.search_audit_log` | A site administrator performed a search of the site admin audit log. {%- endif %} @@ -1144,108 +1277,130 @@ topics: {%- ifversion ghes %} | `staff.unlock` | A site administrator unlocked (temporarily gained full access to) all of a user's private repositories. {%- endif %} -| `staff.unverify_domain` | |{% ifversion ghes %}A site administrator or {% endif %}GitHub staff unverified an organization or enterprise domain. {% ifversion ghec or ghes > 3.1 %}For more information, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)" and "[Verifying or approving a domain for your enterprise](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)."{% endif %}| | `staff.verify_domain` | {% ifversion ghes %}A site administrator or {% endif %}GitHub staff verified an organization or enterprise domain. {% ifversion ghec or ghes > 3.1 %}For more information, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)" and "[Verifying or approving a domain for your enterprise](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)."{% endif %} +| `staff.unverify_domain` | {% ifversion ghes %}A site administrator or {% endif %}GitHub staff unverified an organization or enterprise domain. {% ifversion ghec or ghes > 3.1 %}For more information, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)" and "[Verifying or approving a domain for your enterprise](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)."{% endif %} +| `staff.verify_domain` | {% ifversion ghes %}A site administrator or {% endif %}GitHub staff verified an organization or enterprise domain. {% ifversion ghec or ghes > 3.1 %}For more information, see "[Verifying or approving a domain for your organization](/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization)" and "[Verifying or approving a domain for your enterprise](/admin/configuration/configuring-your-enterprise/verifying-or-approving-a-domain-for-your-enterprise)."{% endif %} {%- ifversion ghes %} | `staff.view_audit_log` | A site administrator viewed the site admin audit log. {%- endif %} -### `team` 类操作 +### `team` category actions -| 操作 | 描述 | -| ------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `team.add_member` | A member of an organization was added to a team. 更多信息请参阅“[将组织成员添加到团队](/organizations/organizing-members-into-teams/adding-organization-members-to-a-team)”。 | -| `team.add_repository` | A team was given access and permissions to a repository. | -| `team.change_parent_team` | A child team was created or a child team's parent was changed. For more information, see "[Moving a team in your organization’s hierarchy](/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy)." | -| `team.change_privacy` | A team's privacy level was changed. For more information, see "[Changing team visibility](/organizations/organizing-members-into-teams/changing-team-visibility)." | -| `team.create` | 已向团队添加用户帐户或仓库。 | -| `team.delete` | 已从团队中移除用户帐户或仓库。 | -| `team.destroy` | 已删除团队。 | +| Action | Description +|--------|------------- +| `team.add_member` | A member of an organization was added to a team. For more information, see "[Adding organization members to a team](/organizations/organizing-members-into-teams/adding-organization-members-to-a-team)." +| `team.add_repository` | A team was given access and permissions to a repository. +| `team.change_parent_team` | A child team was created or a child team's parent was changed. For more information, see "[Moving a team in your organization’s hierarchy](/organizations/organizing-members-into-teams/moving-a-team-in-your-organizations-hierarchy)." +| `team.change_privacy` | A team's privacy level was changed. For more information, see "[Changing team visibility](/organizations/organizing-members-into-teams/changing-team-visibility)." +| `team.create` | A user account or repository was added to a team. +| `team.delete` | A user account or repository was removed from a team. +| `team.destroy` | A team was deleted. {%- ifversion ghec or ghes or ghae %} -| `team.demote_maintainer` | A user was demoted from a team maintainer to a team member. | `team.promote_maintainer` | A user was promoted from a team member to a team maintainer. For more information, see "[Promoting an organization member to team maintainer](/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member#promoting-an-organization-member-to-team-maintainer)." +| `team.demote_maintainer` | A user was demoted from a team maintainer to a team member. +| `team.promote_maintainer` | A user was promoted from a team member to a team maintainer. For more information, see "[Promoting an organization member to team maintainer](/organizations/organizing-members-into-teams/assigning-the-team-maintainer-role-to-a-team-member#promoting-an-organization-member-to-team-maintainer)." {%- endif %} -| `team.remove_member` | A member of an organization was removed from a team. For more information, see "[Removing organization members from a team](/organizations/organizing-members-into-teams/removing-organization-members-from-a-team)." | `team.remove_repository` | A repository was no longer under a team's control. | `team.rename` | A team's name was changed. | `team.update_permission` | A team's access was changed. | `team.update_repository_permission` | A team's permission to a repository was changed. +| `team.remove_member` | A member of an organization was removed from a team. For more information, see "[Removing organization members from a team](/organizations/organizing-members-into-teams/removing-organization-members-from-a-team)." +| `team.remove_repository` | A repository was no longer under a team's control. +| `team.rename` | A team's name was changed. +| `team.update_permission` | A team's access was changed. +| `team.update_repository_permission` | A team's permission to a repository was changed. -### `team_discussions` 类操作 +### `team_discussions` category actions -| 操作 | 描述 | -| -------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `team_discussions.clear` | An organization owner cleared the setting to allow team discussions for an organization or enterprise. | -| `team_discussions.disable` | An organization owner disabled team discussions for an organization. For more information, see "[Disabling team discussions for your organization](/organizations/organizing-members-into-teams/disabling-team-discussions-for-your-organization)." | -| `team_discussions.enable` | An organization owner enabled team discussions for an organization. | +| Action | Description +|--------|------------- +| `team_discussions.clear` | An organization owner cleared the setting to allow team discussions for an organization or enterprise. +| `team_discussions.disable` | An organization owner disabled team discussions for an organization. For more information, see "[Disabling team discussions for your organization](/organizations/organizing-members-into-teams/disabling-team-discussions-for-your-organization)." +| `team_discussions.enable` | An organization owner enabled team discussions for an organization. {%- ifversion ghec %} ### `team_sync_tenant` category actions -| 操作 | 描述 | -| ------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `team_sync_tenant.disabled` | Team synchronization with a tenant was disabled. For more information, see "[Managing team synchronization for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization)" and "[Managing team synchronization for organizations in your enterprise](/admin/identity-and-access-management/managing-iam-for-your-enterprise/managing-team-synchronization-for-organizations-in-your-enterprise)." | -| `team_sync_tenant.enabled` | Team synchronization with a tenant was enabled. For more information, see "[Managing team synchronization for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization)" and "[Managing team synchronization for organizations in your enterprise](/admin/identity-and-access-management/managing-iam-for-your-enterprise/managing-team-synchronization-for-organizations-in-your-enterprise)." | -| `team_sync_tenant.update_okta_credentials` | The Okta credentials for team synchronization with a tenant were changed. | +| Action | Description +|--------|------------- +| `team_sync_tenant.disabled` | Team synchronization with a tenant was disabled. For more information, see "[Managing team synchronization for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization)" and "[Managing team synchronization for organizations in your enterprise](/admin/identity-and-access-management/managing-iam-for-your-enterprise/managing-team-synchronization-for-organizations-in-your-enterprise)." +| `team_sync_tenant.enabled` | Team synchronization with a tenant was enabled. For more information, see "[Managing team synchronization for your organization](/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization)" and "[Managing team synchronization for organizations in your enterprise](/admin/identity-and-access-management/managing-iam-for-your-enterprise/managing-team-synchronization-for-organizations-in-your-enterprise)." +| `team_sync_tenant.update_okta_credentials` | The Okta credentials for team synchronization with a tenant were changed. {%- endif %} {%- ifversion fpt or ghes %} -### `two_factor_authentication` 类操作 +### `two_factor_authentication` category actions -| 操作 | 描述 | -| ------------------------------------------------------- | -------------------------------------------------------------------------- | -| `two_factor_authentication.disabled` | [Two-factor authentication][2fa] was disabled for a user account. | -| `two_factor_authentication.enabled` | [Two-factor authentication][2fa] was enabled for a user account. | -| `two_factor_authentication.password_reset_fallback_sms` | A one-time password code was sent to a user account fallback phone number. | -| `two_factor_authentication.recovery_codes_regenerated` | Two factor recovery codes were regenerated for a user account. | -| `two_factor_authentication.sign_in_fallback_sms` | A one-time password code was sent to a user account fallback phone number. | -| `two_factor_authentication.update_fallback` | The two-factor authentication fallback for a user account was changed. | +| Action | Description +|--------|------------- +| `two_factor_authentication.disabled` | [Two-factor authentication][2fa] was disabled for a user account. +| `two_factor_authentication.enabled` | [Two-factor authentication][2fa] was enabled for a user account. +| `two_factor_authentication.password_reset_fallback_sms` | A one-time password code was sent to a user account fallback phone number. +| `two_factor_authentication.recovery_codes_regenerated` | Two factor recovery codes were regenerated for a user account. +| `two_factor_authentication.sign_in_fallback_sms` | A one-time password code was sent to a user account fallback phone number. +| `two_factor_authentication.update_fallback` | The two-factor authentication fallback for a user account was changed. {%- endif %} + [2fa]: /authentication/securing-your-account-with-two-factor-authentication-2fa/about-two-factor-authentication + {%- ifversion fpt or ghes or ghae %} -### `user` 类操作 +### `user` category actions -| 操作 | 描述 | -| ----------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `user.add_email` | 已向用户帐户添加电子邮件地址。 | -| `user.async_delete` | An asynchronous job was started to destroy a user account, eventually triggering a `user.delete` event. | -| `user.audit_log_export` | Audit log entries were exported. | -| `user.block_user` | A user was blocked by another user{% ifversion ghes %} or a site administrator{% endif %}. | -| `user.change_password` | 用户已更改其密码。 | -| `user.create` | 已创建新的用户帐户。 | -| `user.creation_rate_limit_exceeded` | The rate of creation of user accounts, applications, issues, pull requests or other resources exceeded the configured rate limits, or too many users were followed too quickly. | -| `user.delete` | 已通过异步作业销毁用户帐户。 | -{%- ifversion ghes %} +| Action | Description +|--------|------------- +| `user.add_email` | An email address was added to a user account. +| `user.async_delete` | An asynchronous job was started to destroy a user account, eventually triggering a `user.delete` event. +| `user.audit_log_export` | Audit log entries were exported. +| `user.block_user` | A user was blocked by another user{% ifversion ghes %} or a site administrator{% endif %}. +| `user.change_password` | A user changed his or her password. +| `user.create` | A new user account was created. +| `user.creation_rate_limit_exceeded` | The rate of creation of user accounts, applications, issues, pull requests or other resources exceeded the configured rate limits, or too many users were followed too quickly. +| `user.delete` | A user account was destroyed by an asynchronous job. +{%- ifversion ghes %} | `user.demote` | A site administrator was demoted to an ordinary user account. {%- endif %} -| `user.destroy` | A user deleted his or her account, triggering `user.async_delete`. | `user.failed_login` | A user tries to sign in with an incorrect username, password, or two-factor authentication code. | `user.flag_as_large_scale_contributor` | A user account was flagged as a large scale contributor. Only contributions from public repositories the user owns will be shown in their contribution graph, in order to prevent timeouts. | `user.forgot_password` | A user requested a password reset via the sign-in page. | `user.hide_private_contributions_count` | A user changed the visibility of their private contributions. The number of contributions to private repositories on the user's profile are now hidden. For more information, see "[Publicizing or hiding your private contributions on your profile](/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/publicizing-or-hiding-your-private-contributions-on-your-profile)." | `user.lockout` | A user was locked out of their account. | `user.login` | A user signed in. +| `user.destroy` | A user deleted his or her account, triggering `user.async_delete`. +| `user.failed_login` | A user tries to sign in with an incorrect username, password, or two-factor authentication code. +| `user.flag_as_large_scale_contributor` | A user account was flagged as a large scale contributor. Only contributions from public repositories the user owns will be shown in their contribution graph, in order to prevent timeouts. +| `user.forgot_password` | A user requested a password reset via the sign-in page. +| `user.hide_private_contributions_count` | A user changed the visibility of their private contributions. The number of contributions to private repositories on the user's profile are now hidden. For more information, see "[Publicizing or hiding your private contributions on your profile](/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/publicizing-or-hiding-your-private-contributions-on-your-profile)." +| `user.lockout` | A user was locked out of their account. +| `user.login` | A user signed in. {%- ifversion ghes or ghae %} | `user.mandatory_message_viewed` | A user viewed a mandatory message. For more information see "[Customizing user messages for your enterprise](/admin/user-management/managing-users-in-your-enterprise/customizing-user-messages-for-your-enterprise)" for details." {%- endif %} | `user.minimize_comment` | A comment made by a user was minimized. -{%- ifversion ghes %} +{%- ifversion ghes %} | `user.promote` | An ordinary user account was promoted to a site administrator. {%- endif %} -| `user.recreate` | A user's account was restored. | `user.remove_email` | An email address was removed from a user account. | `user.remove_large_scale_contributor_flag` | A user account was no longer flagged as a large scale contributor. | `user.rename` | A username was changed. | `user.reset_password` | A user reset their account password. | `user.show_private_contributions_count` | A user changed the visibility of their private contributions. The number of contributions to private repositories on the user's profile are now shown. For more information, see "[Publicizing or hiding your private contributions on your profile](/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/publicizing-or-hiding-your-private-contributions-on-your-profile)." | `user.sign_in_from_unrecognized_device` | A user signed in from an unrecognized device. | `user.sign_in_from_unrecognized_device_and_location` | A user signed in from an unrecognized device and location. | `user.sign_in_from_unrecognized_location` | A user signed in from an unrecognized location. | `user.suspend` | A user account was suspended by an enterprise owner {% ifversion ghes %} or site administrator{% endif %}. | `user.two_factor_challenge_failure` | A 2FA challenge issued for a user account failed. | `user.two_factor_challenge_success` | A 2FA challenge issued for a user account succeeded. | `user.two_factor_recover` | A user used their 2FA recovery codes. | `user.two_factor_recovery_codes_downloaded` | A user downloaded 2FA recovery codes for their account. | `user.two_factor_recovery_codes_printed` | A user printed 2FA recovery codes for their account. | `user.two_factor_recovery_codes_viewed` | A user viewed 2FA recovery codes for their account. | `user.two_factor_requested` | A user was prompted for a two-factor authentication code. | `user.unblock_user` | A user was unblocked another user{% ifversion ghes %} or a site administrator{% endif %}. | `user.unminimize_comment` | A comment made by a user was unminimized. | `user.unsuspend` | A user account was unsuspended by an enterprise owner {% ifversion ghes %} or site administrator{% endif %}. +| `user.recreate` | A user's account was restored. +| `user.remove_email` | An email address was removed from a user account. +| `user.remove_large_scale_contributor_flag` | A user account was no longer flagged as a large scale contributor. +| `user.rename` | A username was changed. +| `user.reset_password` | A user reset their account password. +| `user.show_private_contributions_count` | A user changed the visibility of their private contributions. The number of contributions to private repositories on the user's profile are now shown. For more information, see "[Publicizing or hiding your private contributions on your profile](/account-and-profile/setting-up-and-managing-your-github-profile/managing-contribution-graphs-on-your-profile/publicizing-or-hiding-your-private-contributions-on-your-profile)." +| `user.sign_in_from_unrecognized_device` | A user signed in from an unrecognized device. +| `user.sign_in_from_unrecognized_device_and_location` | A user signed in from an unrecognized device and location. +| `user.sign_in_from_unrecognized_location` | A user signed in from an unrecognized location. +| `user.suspend` | A user account was suspended by an enterprise owner {% ifversion ghes %} or site administrator{% endif %}. +| `user.two_factor_challenge_failure` | A 2FA challenge issued for a user account failed. +| `user.two_factor_challenge_success` | A 2FA challenge issued for a user account succeeded. +| `user.two_factor_recover` | A user used their 2FA recovery codes. +| `user.two_factor_recovery_codes_downloaded` | A user downloaded 2FA recovery codes for their account. +| `user.two_factor_recovery_codes_printed` | A user printed 2FA recovery codes for their account. +| `user.two_factor_recovery_codes_viewed` | A user viewed 2FA recovery codes for their account. +| `user.two_factor_requested` | A user was prompted for a two-factor authentication code. +| `user.unblock_user` | A user was unblocked another user{% ifversion ghes %} or a site administrator{% endif %}. +| `user.unminimize_comment` | A comment made by a user was unminimized. +| `user.unsuspend` | A user account was unsuspended by an enterprise owner {% ifversion ghes %} or site administrator{% endif %}. {%- endif %} {%- ifversion ghec or ghes %} ### `user_license` category actions -| 操作 | 描述 | -| ---------------------- | ------------------------------------------------------------ | -| `user_license.create` | A seat license for a user in an enterprise was created. | -| `user_license.destroy` | A seat license for a user in an enterprise was deleted. | -| `user_license.update` | A seat license type for a user in an enterprise was changed. | +| Action | Description +|--------|------------- +| `user_license.create` | A seat license for a user in an enterprise was created. +| `user_license.destroy` | A seat license for a user in an enterprise was deleted. +| `user_license.update` | A seat license type for a user in an enterprise was changed. {%- endif %} {% ifversion fpt or ghec or ghes > 3.1 or ghae %} -### `workflows` 类操作 +### `workflows` category actions {% data reusables.audit_log.audit-log-events-workflows %} {%- endif %} - - [OAuth access token]: /developers/apps/building-oauth-apps/authorizing-oauth-apps - - [OAuth application]: /guides/basics-of-authentication/#registering-your-app - - [OAuth 应用程序]: /guides/basics-of-authentication/#registering-your-app - - [add key]: /authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account - [deploy key]: /developers/overview/managing-deploy-keys#deploy-keys - - [2fa]: /authentication/securing-your-account-with-two-factor-authentication-2fa/about-two-factor-authentication diff --git a/translations/zh-CN/content/admin/overview/about-upgrades-to-new-releases.md b/translations/zh-CN/content/admin/overview/about-upgrades-to-new-releases.md index 5c6a4de2a3..2b4aac9f6d 100644 --- a/translations/zh-CN/content/admin/overview/about-upgrades-to-new-releases.md +++ b/translations/zh-CN/content/admin/overview/about-upgrades-to-new-releases.md @@ -13,7 +13,7 @@ topics: {% ifversion ghes < 3.3 %}{% data reusables.enterprise.upgrade-ghes-for-features %}{% endif %} -{% data reusables.enterprise.constantly-improving %}{% ifversion ghae %}{% data variables.product.prodname_ghe_managed %} is a fully managed service, so {% data variables.product.company_short %} completes the upgrade process for your enterprise.{% endif %} +{% data reusables.enterprise.constantly-improving %}{% ifversion ghae %}{% data variables.product.prodname_ghe_managed %} 是一项完全管理的服务,因此 {% data variables.product.company_short %} 可完成企业的升级过程。{% endif %} 功能版本包括新的功能和功能升级,通常每季度进行一次。 {% ifversion ghae %}{% data variables.product.company_short %} 会将您的企业升级到最新的功能版本。 您的企业如有任何计划内的停机,都会提前通知您。{% endif %} diff --git a/translations/zh-CN/content/admin/overview/system-overview.md b/translations/zh-CN/content/admin/overview/system-overview.md index 827df3d33c..d335eed3ee 100644 --- a/translations/zh-CN/content/admin/overview/system-overview.md +++ b/translations/zh-CN/content/admin/overview/system-overview.md @@ -124,7 +124,7 @@ topics: - SSH 公钥身份验证提供使用 Git 的仓库访问权限和管理 shell 的访问权限。 更多信息请参阅“[关于 SSH](/authentication/connecting-to-github-with-ssh/about-ssh)”和“[访问管理 shell (SSH)](/admin/configuration/configuring-your-enterprise/accessing-the-administrative-shell-ssh)“。 - 使用 HTTP cookie 的用户名和密码身份验证提供 Web 应用程序访问和会话管理权限,可选择双重身份验证 (2FA)。 更多信息请参阅“[使用内置身份验证](/admin/identity-and-access-management/authenticating-users-for-your-github-enterprise-server-instance/using-built-in-authentication)”。 -- 使用 LDAP 服务、SAML 身份提供程序 (IdP) 或其他兼容服务的外部 LDAP、SAML 或 CAS 身份验证提供对 Web 应用程序的访问权限。 For more information, see "[Managing IAM for your enterprise](/admin/identity-and-access-management/managing-iam-for-your-enterprise)." +- 使用 LDAP 服务、SAML 身份提供程序 (IdP) 或其他兼容服务的外部 LDAP、SAML 或 CAS 身份验证提供对 Web 应用程序的访问权限。 更多信息请参阅“[管理企业的 IAM](/admin/identity-and-access-management/managing-iam-for-your-enterprise)”。 - OAuth 和个人访问令牌为外部客户端和服务提供对 Git 仓库数据和 API 的访问权限。 更多信息请参阅“[创建个人访问令牌](/github/authenticating-to-github/creating-a-personal-access-token)”。 ### 审核和访问日志记录 diff --git a/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md b/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md index 0e42fd6f69..1fc5b500bf 100644 --- a/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md +++ b/translations/zh-CN/content/admin/policies/enforcing-policies-for-your-enterprise/enforcing-policies-for-security-settings-in-your-enterprise.md @@ -31,7 +31,7 @@ shortTitle: 安全设置策略 ## 要求企业中的组织进行双重身份验证 -Enterprise owners can require that organization members, billing managers, and outside collaborators in all organizations owned by an enterprise use two-factor authentication to secure their user accounts. +企业所有者可以要求企业拥有的所有组织中的组织成员、帐单管理员和外部协作者使用双重身份验证来保护其用户帐户。 您必须为自己的帐户启用双重身份验证,然后才能对企业拥有的所有组织都要求 2FA。 更多信息请参阅“[使用双重身份验证 (2FA) 保护您的帐户](/articles/securing-your-account-with-two-factor-authentication-2fa/)”。 @@ -39,9 +39,9 @@ Enterprise owners can require that organization members, billing managers, and o **警告:** -- 当您需要为企业进行双重身份验证时,不使用 2FA 的企业拥有的所有组织中的成员、外部协作者和帐单管理员(包括自动程序帐户)将从组织中删除,并失去对其仓库的访问权限。 他们还会失去对组织私有仓库的复刻的访问权限。 You can reinstate their access privileges and settings if they enable two-factor authentication for their account within three months of their removal from your organization. 更多信息请参阅“[恢复组织的前成员](/articles/reinstating-a-former-member-of-your-organization)”。 -- Any organization owner, member, billing manager, or outside collaborator in any of the organizations owned by your enterprise who disables 2FA for their account after you've enabled required two-factor authentication will automatically be removed from the organization. -- If you're the sole owner of a enterprise that requires two-factor authentication, you won't be able to disable 2FA for your user account without disabling required two-factor authentication for the enterprise. +- 当您需要为企业进行双重身份验证时,不使用 2FA 的企业拥有的所有组织中的成员、外部协作者和帐单管理员(包括自动程序帐户)将从组织中删除,并失去对其仓库的访问权限。 他们还会失去对组织私有仓库的复刻的访问权限。 如果他们在从您的组织中删除后的三个月内为其帐户启用双重身份验证,您可以恢复其访问权限和设置。 更多信息请参阅“[恢复组织的前成员](/articles/reinstating-a-former-member-of-your-organization)”。 +- 为其帐户禁用 2FA 的企业拥有的任何组织中的任何组织所有者、成员、帐单管理员或外部协作者在您启用所需的双重身份验证后将自动从组织中删除。 +- 如果您是某个要求双重身份验证的企业的唯一所有者,则在不为企业禁用双重身份验证要求的情况下,您将无法为用户帐户禁用 2FA。 {% endwarning %} diff --git a/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md b/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md index 2368541997..3f2cb28229 100644 --- a/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md +++ b/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/managing-projects-using-jira.md @@ -61,10 +61,10 @@ shortTitle: 使用 Jira 的项目管理 5. 在 **Add New Account** 模态中,填写您的 {% data variables.product.prodname_enterprise %} 设置: - 从 **Host(主机)**下拉菜单中,选择 **{% data variables.product.prodname_enterprise %}**。 - - In the **Team or User Account** field, type the name of your {% data variables.product.prodname_enterprise %} organization or user account. + - 在 **Team or User Account** 字段中,输入 {% data variables.product.prodname_enterprise %} 组织或用户帐户的名称。 - 在 **OAuth Key** 字段中,输入 {% data variables.product.prodname_enterprise %} 开发者应用程序的客户端 ID。 - 在 **OAuth Secret** 字段中,输入 {% data variables.product.prodname_enterprise %} 开发者应用程序的客户端密钥。 - - If you don't want to link new repositories owned by your {% data variables.product.prodname_enterprise %} organization or user account, deselect **Auto Link New Repositories**. + - 如果您不想链接 {% data variables.product.prodname_enterprise %} 组织或用户帐户拥有的新仓库,请取消选择 **Auto Link New Repositories(自动链接新仓库)**。 - 如果您不想启用智能提交,请取消选择 **Enable Smart Commits(启用智能提交)**。 - 单击 **Add(添加)**。 6. 查看您要授予 {% data variables.product.prodname_enterprise %} 帐户的权限,然后单击 **Authorize application**。 diff --git a/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md b/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md index 2d24f4d77a..8d67e269a8 100644 --- a/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md +++ b/translations/zh-CN/content/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise.md @@ -24,7 +24,7 @@ shortTitle: 管理您的组织角色 {% warning %} -**警告**:如果组织使用 SCIM 来预配用户,则以这种方式加入组织可能会产生意想不到的后果。 For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +**警告**:如果组织使用 SCIM 来预配用户,则以这种方式加入组织可能会产生意想不到的后果。 更多信息请参阅“[关于组织的 SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)”。 {% endwarning %} diff --git a/translations/zh-CN/content/billing/managing-billing-for-your-github-account/about-per-user-pricing.md b/translations/zh-CN/content/billing/managing-billing-for-your-github-account/about-per-user-pricing.md index f76fcd5ef6..e451bbcf0d 100644 --- a/translations/zh-CN/content/billing/managing-billing-for-your-github-account/about-per-user-pricing.md +++ b/translations/zh-CN/content/billing/managing-billing-for-your-github-account/about-per-user-pricing.md @@ -54,7 +54,7 @@ topics: 如果对您的订阅有任何疑问,请联系 {% data variables.contact.contact_support %}。 -To further support your team's collaboration abilities, you can upgrade to {% data variables.product.prodname_ghe_cloud %}, which includes features like SAML single sign-on and advanced auditing. {% data reusables.enterprise.link-to-ghec-trial %} +为了进一步支持团队的协作能力,您可以升级到 {% data variables.product.prodname_ghe_cloud %},其中包括 SAML 单点登录和高级审核等功能。 {% data reusables.enterprise.link-to-ghec-trial %} 有关 {% data variables.product.prodname_ghe_cloud %} 的每用户定价的详细信息,请参阅 [{% data variables.product.prodname_ghe_cloud %} 文档](/enterprise-cloud@latest/billing/managing-billing-for-your-github-account/about-per-user-pricing)。 diff --git a/translations/zh-CN/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md b/translations/zh-CN/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md index 6cbb18c5af..409595d281 100644 --- a/translations/zh-CN/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md +++ b/translations/zh-CN/content/code-security/supply-chain-security/understanding-your-software-supply-chain/about-the-dependency-graph.md @@ -54,7 +54,7 @@ For public repositories, only public repositories that depend on it or on packag You can use the dependency graph to: -- Explore the repositories your code depends on{% ifversion fpt or ghec %}, and those that depend on it{% endif %}. For more information, see "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)." {% ifversion fpt or ghec %} +- Explore the repositories your code depends on{% ifversion fpt or ghec %}, and those that depend on it{% endif %}. For more information, see "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)." {% ifversion ghec %} - View a summary of the dependencies used in your organization's repositories in a single dashboard. For more information, see "[Viewing insights for your organization](/articles/viewing-insights-for-your-organization#viewing-organization-dependency-insights)."{% endif %} - View and update vulnerable dependencies for your repository. For more information, see "[About {% data variables.product.prodname_dependabot_alerts %}](/code-security/supply-chain-security/about-alerts-for-vulnerable-dependencies)."{% ifversion fpt or ghes > 3.1 or ghec %} - See information about vulnerable dependencies in pull requests. For more information, see "[Reviewing dependency changes in a pull request](/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-dependency-changes-in-a-pull-request)."{% endif %} @@ -102,7 +102,6 @@ The recommended formats explicitly define which versions are used for all direct ## Further reading - "[Dependency graph](https://en.wikipedia.org/wiki/Dependency_graph)" on Wikipedia -- "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)"{% ifversion fpt or ghec %} -- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %} +- "[Exploring the dependencies of a repository](/github/visualizing-repository-data-with-graphs/exploring-the-dependencies-of-a-repository)" - "[Viewing {% data variables.product.prodname_dependabot_alerts %} for vulnerable dependencies](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)" - "[Troubleshooting the detection of vulnerable dependencies](/github/managing-security-vulnerabilities/troubleshooting-the-detection-of-vulnerable-dependencies)" diff --git a/translations/zh-CN/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md b/translations/zh-CN/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md index 9f9e14391f..1b0585b358 100644 --- a/translations/zh-CN/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md +++ b/translations/zh-CN/content/code-security/supply-chain-security/understanding-your-software-supply-chain/configuring-the-dependency-graph.md @@ -37,6 +37,6 @@ shortTitle: Configure dependency graph ## 延伸阅读 -{% ifversion fpt or ghec %}- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %} +{% ifversion ghec %}- "[Viewing insights for your organization](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %} - "[查看漏洞依赖项的 {% data variables.product.prodname_dependabot_alerts %}](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)" - "[漏洞依赖项检测疑难解答](/github/managing-security-vulnerabilities/troubleshooting-the-detection-of-vulnerable-dependencies)" diff --git a/translations/zh-CN/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md b/translations/zh-CN/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md index a157bcdbd8..25c0565ddd 100644 --- a/translations/zh-CN/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md +++ b/translations/zh-CN/content/code-security/supply-chain-security/understanding-your-software-supply-chain/exploring-the-dependencies-of-a-repository.md @@ -106,7 +106,7 @@ shortTitle: 探索依赖项 ## 延伸阅读 - “[关于依赖关系图](/github/visualizing-repository-data-with-graphs/about-the-dependency-graph)” -- "[查看漏洞依赖项的 {% data variables.product.prodname_dependabot_alerts %}](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)"{% ifversion fpt or ghec %} -- "[查看用于组织的洞见](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)" +- "[查看漏洞依赖项的 {% data variables.product.prodname_dependabot_alerts %}](/github/managing-security-vulnerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository)"{% ifversion ghec %} +- "[查看用于组织的洞见](/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization)"{% endif %}{% ifversion fpt or ghec %} - "[了解 {% data variables.product.prodname_dotcom %} 如何使用和保护数据](/get-started/privacy-on-github)" {% endif %} diff --git a/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md b/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md index cfcd897354..411ec9868c 100644 --- a/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md +++ b/translations/zh-CN/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization.md @@ -1,12 +1,10 @@ --- title: 查看组织的洞察 intro: 组织洞察提供有关组织的活动、贡献和依赖项的数据。 -product: '{% data reusables.gated-features.org-insights %}' redirect_from: - /articles/viewing-insights-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/viewing-insights-for-your-organization versions: - fpt: '*' ghec: '*' topics: - Organizations @@ -15,6 +13,8 @@ shortTitle: 查看组织见解 permissions: Organization members can view organization insights. --- +## 关于组织洞见 + 您可以使用组织活动洞察来帮助您更好地了解组织成员如何使用 {% data variables.product.product_name %} 进行协作和处理代码。 依赖项洞察可帮助您跟踪、报告和处理组织的开源使用情况。 {% note %} diff --git a/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md b/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md index 7f3466dbe0..e9b6e7448f 100644 --- a/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md +++ b/translations/zh-CN/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md @@ -24,7 +24,7 @@ shortTitle: 管理 SAML 访问 {% data reusables.saml.about-linked-identities %} -如果可用,该条目将包含 SCIM 数据。 For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +如果可用,该条目将包含 SCIM 数据。 更多信息请参阅“[关于组织的 SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)”。 {% warning %} diff --git a/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md b/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md index ae9de8655c..a8dc5ccae2 100644 --- a/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md +++ b/translations/zh-CN/content/organizations/managing-access-to-your-organizations-repositories/adding-outside-collaborators-to-repositories-in-your-organization.md @@ -29,7 +29,7 @@ permissions: People with admin access to a repository can add an outside collabo {% endif %} {% ifversion ghes %} -要将某人添加为仓库的外部协作者,此人必须在 {% data variables.product.product_location %} 上拥有个人帐户。 如果您的企业使用外部身份验证系统(如 SAML 或 LDAP),则要添加的人员必须通过该系统登录才能创建帐户。 If the person does not have access to the authentication system and built-in authentication is enabled for your enterprise, a site administrator can create an account for the person. For more information, see "[Configuring built-in authentication](/admin/identity-and-access-management/using-built-in-authentication/configuring-built-in-authentication)." +要将某人添加为仓库的外部协作者,此人必须在 {% data variables.product.product_location %} 上拥有个人帐户。 如果您的企业使用外部身份验证系统(如 SAML 或 LDAP),则要添加的人员必须通过该系统登录才能创建帐户。 如果此人无权访问身份验证系统,并且为您的企业启用了内置身份验证,则站点管理员可以为该人员创建帐户。 更多信息请参阅“[配置内置身份验证](/admin/identity-and-access-management/using-built-in-authentication/configuring-built-in-authentication)”。 {% endif %} {% ifversion not ghae %} diff --git a/translations/zh-CN/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md b/translations/zh-CN/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md index 3ee799c1d5..13d85da996 100644 --- a/translations/zh-CN/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md +++ b/translations/zh-CN/content/organizations/managing-membership-in-your-organization/inviting-users-to-join-your-organization.md @@ -1,6 +1,6 @@ --- -title: 邀请用户参加您的组织 -intro: '您可以使用任何人的 {% data variables.product.product_location %} 用户名或电子邮件地址邀请他们成为您组织的成员。' +title: Inviting users to join your organization +intro: 'You can invite anyone to become a member of your organization using their username or email address for {% data variables.product.product_location %}.' permissions: Organization owners can invite users to join an organization. redirect_from: - /articles/adding-or-inviting-members-to-a-team-in-an-organization @@ -12,20 +12,20 @@ versions: topics: - Organizations - Teams -shortTitle: 邀请用户加入 +shortTitle: Invite users to join --- -## 关于组织邀请 +## About organization invitations -如果您的组织采用付费的每用户订阅,则必须有未使用的许可才可邀请新成员加入组织或恢复前组织成员。 更多信息请参阅“[关于每用户定价](/articles/about-per-user-pricing)”。 +If your organization has a paid per-user subscription, an unused license must be available before you can invite a new member to join the organization or reinstate a former organization member. For more information, see "[About per-user pricing](/articles/about-per-user-pricing)." {% data reusables.organizations.org-invite-scim %} -如果您的组织要求成员使用双重身份验证,则您邀请的用户在接受邀请之前必须启用双重身份验证。 更多信息请参阅“[在组织中要求双重身份验证](/organizations/keeping-your-organization-secure/requiring-two-factor-authentication-in-your-organization)”和“[使用双重身份验证 (2FA) 保护您的帐户](/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa)”。 +If your organization requires members to use two-factor authentication, users that you invite must enable two-factor authentication before accepting the invitation. For more information, see "[Requiring two-factor authentication in your organization](/organizations/keeping-your-organization-secure/requiring-two-factor-authentication-in-your-organization)" and "[Securing your account with two-factor authentication (2FA)](/github/authenticating-to-github/securing-your-account-with-two-factor-authentication-2fa)." -{% ifversion fpt %}使用 {% data variables.product.prodname_ghe_cloud %}{% else %}您{% endif %} 的组织可以实施 SCIM,以添加、管理和删除组织成员通过身份提供商 (IdP) 对 {% data variables.product.prodname_dotcom_the_website %} 的访问权限。 For more information, see "[About SCIM for organizations](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} +{% ifversion fpt %}Organizations that use {% data variables.product.prodname_ghe_cloud %}{% else %}You{% endif %} can implement SCIM to add, manage, and remove organization members' access to {% data variables.product.prodname_dotcom_the_website %} through an identity provider (IdP). For more information, see "[About SCIM for organizations](/enterprise-cloud@latest/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations){% ifversion fpt %}" in the {% data variables.product.prodname_ghe_cloud %} documentation.{% else %}."{% endif %} -## 邀请用户加入您的组织 +## Inviting a user to join your organization {% data reusables.profile.access_org %} {% data reusables.user-settings.access_org %} @@ -38,5 +38,5 @@ shortTitle: 邀请用户加入 {% data reusables.organizations.send-invitation %} {% data reusables.organizations.user_must_accept_invite_email %} {% data reusables.organizations.cancel_org_invite %} -## 延伸阅读 -- "[向团队添加组织成员](/articles/adding-organization-members-to-a-team)" +## Further reading +- "[Adding organization members to a team](/articles/adding-organization-members-to-a-team)" diff --git a/translations/zh-CN/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md b/translations/zh-CN/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md index 3a4e6ed80e..69b0e27c20 100644 --- a/translations/zh-CN/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md +++ b/translations/zh-CN/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md @@ -1,12 +1,10 @@ --- title: 更改组织依赖项洞察图的可见性 intro: 您可以允许所有组织成员查看组织的依赖项洞察图或仅限组织所有者查看。 -product: '{% data reusables.gated-features.org-insights %}' redirect_from: - /articles/changing-the-visibility-of-your-organizations-dependency-insights - /github/setting-up-and-managing-organizations-and-teams/changing-the-visibility-of-your-organizations-dependency-insights versions: - fpt: '*' ghec: '*' topics: - Organizations diff --git a/translations/zh-CN/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md b/translations/zh-CN/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md index 8ab947f4f8..779f1e4e4d 100644 --- a/translations/zh-CN/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md +++ b/translations/zh-CN/content/organizations/managing-peoples-access-to-your-organization-with-roles/roles-in-an-organization.md @@ -103,8 +103,9 @@ shortTitle: 组织中的角色 | 创建项目板(请参阅“[组织的项目板权限](/articles/project-board-permissions-for-an-organization)”) | **X** | **X** | **X** | | **X** | | 查看所有组织成员和团队 | **X** | **X** | **X** | | **X** | | @提及任何可见团队 | **X** | **X** | **X** | | **X** | -| 可成为*团队维护员* | **X** | **X** | **X** | | **X** | -| 查看组织洞见(请参阅“[查看用于组织的洞见](/articles/viewing-insights-for-your-organization)”) | **X** | **X** | **X** | | **X** | +| 可成为*团队维护员* | **X** | **X** | **X** | | **X** |{% ifversion ghec %} +| 查看组织洞见(请参阅“[查看用于组织的洞见](/articles/viewing-insights-for-your-organization)”) | **X** | **X** | **X** | | **X** +{% endif %} | 查看并发布公共团队讨论到**所有团队**(请参阅“[关于团队讨论](/organizations/collaborating-with-your-team/about-team-discussions)”) | **X** | **X** | **X** | | **X** | | 查看并发布私有团队讨论到**所有团队**(请参阅“[关于团队讨论](/organizations/collaborating-with-your-team/about-team-discussions)”) | **X** | | | | | | 编辑和删除**所有团队**的团队讨论(请参阅“[管理破坏性评论](/communities/moderating-comments-and-conversations/managing-disruptive-comments)”) | **X** | | | | | @@ -112,8 +113,9 @@ shortTitle: 组织中的角色 | 隐藏对可写提交、拉取请求和议题的评论(请参阅“[管理破坏性评论](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)”) | **X** | **X** | **X** | | **X** | | 隐藏对_所有_提交、拉取请求和议题的评论(请参阅“[管理破坏性评论](/communities/moderating-comments-and-conversations/managing-disruptive-comments/#hiding-a-comment)”) | **X** | | **X** | | **X** | | 阻止和取消阻止非成员贡献者(请参阅“[阻止用户参与您的组织](/communities/maintaining-your-safety-on-github/blocking-a-user-from-your-organization)”) | **X** | | **X** | | | -| 限制公共存储库中某些用户的交互(请参阅“[限制组织中的交互](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization)”) | **X** | | **X** | | | -| 管理组织依赖项洞见的显示(请参阅“[更改组织依赖项洞见的可见性](/articles/changing-the-visibility-of-your-organizations-dependency-insights)”) | **X** | | | | | +| 限制公共存储库中某些用户的交互(请参阅“[限制组织中的交互](/communities/moderating-comments-and-conversations/limiting-interactions-in-your-organization)”) | **X** | | **X** | | |{% ifversion ghec %} +| 管理组织依赖项洞见的显示(请参阅“[更改组织依赖项洞见的可见性](/articles/changing-the-visibility-of-your-organizations-dependency-insights)”) | **X** | | | | +{% endif %} | 设置**所有团队**的团队头像(请参阅“[设置团队的头像](/articles/setting-your-team-s-profile-picture)”) | **X** | | | | | | 赞助帐户和管理组织的赞助(请参阅“[赞助开源贡献者](/sponsors/sponsoring-open-source-contributors)”) | **X** | | | **X** | **X** | | 管理赞助帐户的电子邮件更新(请参阅“[管理组织赞助帐户的更新](/organizations/managing-organization-settings/managing-updates-from-accounts-your-organization-sponsors)”) | **X** | | | | | diff --git a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md index c638731613..a8fea4e9e3 100644 --- a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md +++ b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md @@ -46,7 +46,7 @@ shortTitle: 使用 SAML SSO 的 IAM {% data reusables.saml.saml-supported-idps %} -有些 IdP 支持配置通过 SCIM 访问 {% data variables.product.prodname_dotcom %} 组织。 For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +有些 IdP 支持配置通过 SCIM 访问 {% data variables.product.prodname_dotcom %} 组织。 更多信息请参阅“[关于组织的 SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)”。 {% data reusables.scim.enterprise-account-scim %} @@ -56,7 +56,7 @@ shortTitle: 使用 SAML SSO 的 IAM 要供应新用户而不使用组织所有者的邀请,您可以使用 URL `https://github.com/orgs/ORGANIZATION/sso/sign_up`,将 _ORGANIZATION_ 替换为组织的名称。 例如,您可以配置 IdP,让能访问 IdP 的任何人都可单击 IdP 仪表板上的链接加入 {% data variables.product.prodname_dotcom %} 组织。 -如果您的 IdP 支持 SCIM,当您在 IdP 上授予访问权限时,{% data variables.product.prodname_dotcom %} 可以自动邀请成员加入您的组织。 如果您删除成员对 SAML IdP 上 {% data variables.product.prodname_dotcom %} 组织的访问权限,该成员将自动从 {% data variables.product.prodname_dotcom %} 组织删除。 For more information, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +如果您的 IdP 支持 SCIM,当您在 IdP 上授予访问权限时,{% data variables.product.prodname_dotcom %} 可以自动邀请成员加入您的组织。 如果您删除成员对 SAML IdP 上 {% data variables.product.prodname_dotcom %} 组织的访问权限,该成员将自动从 {% data variables.product.prodname_dotcom %} 组织删除。 更多信息请参阅“[关于组织的 SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)”。 {% data reusables.organizations.team-synchronization %} @@ -64,6 +64,6 @@ shortTitle: 使用 SAML SSO 的 IAM ## 延伸阅读 -- "[SAML configuration reference](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)" +- “[SAML 配置参考](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)” - "[关于双重身份验证和 SAML 单点登录](/articles/about-two-factor-authentication-and-saml-single-sign-on)" - "[关于使用 SAML 单点登录进行身份验证](/github/authenticating-to-github/about-authentication-with-saml-single-sign-on)" diff --git a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md index 57517e1e2b..f25b35e212 100644 --- a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md +++ b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md @@ -18,7 +18,7 @@ shortTitle: 使用 Octa 配置 SAML 和 SCIM {% data reusables.saml.ghec-only %} -SAML SSO 控制并保护对组织资源(如仓库、议题和拉取请求)的访问。 当您在 Okta 中进行更改时,SCIM 会自动添加、管理和删除成员对您在 {% data variables.product.product_location %} 上的组织的访问权限。 For more information, see "[About identity and access management with SAML single sign-on](/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on)" and "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +SAML SSO 控制并保护对组织资源(如仓库、议题和拉取请求)的访问。 当您在 Okta 中进行更改时,SCIM 会自动添加、管理和删除成员对您在 {% data variables.product.product_location %} 上的组织的访问权限。 更多信息请参阅“[关于使用 SAML 单点登录管理身份和访问](/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on)”和“[关于组织的 SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)”。 启用 SCIM 后,您在 Okta 中为其分配了 {% data variables.product.prodname_ghe_cloud %} 应用程序的任何用户都可以使用以下配置。 @@ -41,9 +41,9 @@ SAML SSO 控制并保护对组织资源(如仓库、议题和拉取请求) {% data reusables.scim.dedicated-configuration-account %} -1. Sign into {% data variables.product.prodname_dotcom_the_website %} using an account that is an organization owner and is ideally used only for SCIM configuration. -1. To create an active SAML session for your organization, navigate to `https://github.com/orgs/ORGANIZATION-NAME/sso`. 更多信息请参阅“[关于使用 SAML 单点登录进行身份验证](/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on#about-oauth-apps-github-apps-and-saml-sso)”。 -1. Navigate to Okta. +1. 使用作为组织所有者且理想情况下仅用于 SCIM 配置的帐户登录到 {% data variables.product.prodname_dotcom_the_website %}。 +1. 要为组织创建活动的 SAML 会话,请导航到 `https://github.com/orgs/ORGANIZATION-NAME/sso`。 更多信息请参阅“[关于使用 SAML 单点登录进行身份验证](/authentication/authenticating-with-saml-single-sign-on/about-authentication-with-saml-single-sign-on#about-oauth-apps-github-apps-and-saml-sso)”。 +1. 导航到 Okta。 {% data reusables.saml.okta-dashboard-click-applications %} {% data reusables.saml.okta-applications-click-ghec-application-label %} {% data reusables.saml.okta-provisioning-tab %} diff --git a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md index 4961babd95..5524bb5b2b 100644 --- a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md +++ b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md @@ -1,6 +1,6 @@ --- title: 将身份提供程序连接到组织 -intro: 'To use SAML single sign-on and SCIM, you must connect your identity provider (IdP) to your organization on {% data variables.product.product_name %}.' +intro: '要使用 SAML 单点登录和 SCIM,您必须在 {% data variables.product.product_name %}上将您的身份提供程序 (IdP) 连接到您的组织。' redirect_from: - /articles/connecting-your-identity-provider-to-your-organization - /github/setting-up-and-managing-organizations-and-teams/connecting-your-identity-provider-to-your-organization @@ -13,7 +13,7 @@ topics: shortTitle: 连接 IdP --- -## About connection of your IdP to your organization +## 关于将 IdP 连接到组织 为您的 {% data variables.product.product_name %} 组织启用 SAML SSO时,会将您的身份提供商 (IDP) 连接到组织。 更多信息请参阅“[对组织启用并测试 SAML 单点登录](/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization)”。 @@ -29,7 +29,7 @@ shortTitle: 连接 IdP {% note %} -**注:**{% data variables.product.product_name %} 支持的用于 SCIM 的身份提供程序为 Azure AD、Okta 和 OneLogin。 For more information about SCIM, see "[About SCIM for organizations](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)." +**注:**{% data variables.product.product_name %} 支持的用于 SCIM 的身份提供程序为 Azure AD、Okta 和 OneLogin。 有关 SCIM 的详细信息,请参阅“[关于组织的 SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations)”。 {% data reusables.scim.enterprise-account-scim %} @@ -37,4 +37,4 @@ shortTitle: 连接 IdP ## SAML 元数据 -For more information about SAML metadata for your organization, see "[SAML configuration reference](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)." +有关组织的 SAML 元数据的详细信息,请参阅“[SAML 配置参考](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)”。 diff --git a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md index 873dbcfff1..d48686eeb2 100644 --- a/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md +++ b/translations/zh-CN/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md @@ -58,4 +58,4 @@ shortTitle: 启用和测试 SAML SSO ## 延伸阅读 - "[关于使用 SAML 单点登录管理身份和访问](/articles/about-identity-and-access-management-with-saml-single-sign-on)" -- "[SAML configuration reference](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)" +- “[SAML 配置参考](/admin/identity-and-access-management/using-saml-for-enterprise-iam/saml-configuration-reference)” diff --git a/translations/zh-CN/content/site-policy/other-site-policies/github-and-trade-controls.md b/translations/zh-CN/content/site-policy/other-site-policies/github-and-trade-controls.md index 95914f4e17..222f5cd266 100644 --- a/translations/zh-CN/content/site-policy/other-site-policies/github-and-trade-controls.md +++ b/translations/zh-CN/content/site-policy/other-site-policies/github-and-trade-controls.md @@ -16,9 +16,9 @@ topics: GitHub.com、GitHub Enterprise Server 以及您上传至其中任一产品的信息都需遵守贸易管制法规,包括美国出口管理条例(Export Administration Regulations,EAR)。 出口管理条例 (EAR)。 -GitHub 的愿景是成为开发者合作的全球平台,不管开发者居住在哪里都可参与。 We take seriously our responsibility to examine government sanctions thoroughly to be certain that users and customers are not impacted beyond what is required by law. 这包括保持公共仓库服务,其中包括提供开放源码项目并帮助用户访问,以支持受制裁区域开发人员的个人沟通。 这也意味着 GitHub 将提倡受制裁区域的开发者享有更大的平台访问权,并充分进入全球开源社区。 +GitHub 的愿景是成为开发者合作的全球平台,不管开发者居住在哪里都可参与。 我们认真履行全面研究政府制裁的职责,以确保用户和客户不受法律以外因素的影响。 这包括保持公共仓库服务,其中包括提供开放源码项目并帮助用户访问,以支持受制裁区域开发人员的个人沟通。 这也意味着 GitHub 将提倡受制裁区域的开发者享有更大的平台访问权,并充分进入全球开源社区。 -由于我们的积极倡导以及与美国 监管机构的通力合作,GitHub 已获得美国 财政部外国资产控制办公室 (OFAC) 的许可,允许向伊朗的开发者恢复我们的云服务。 我们将继续与美国 regulators to secure similar licenses to offer collaboration services to developers in other sanctioned regions, such as Syria and Crimea. 我们致力于倡导尽可能广泛的开发者访问权限,因为我们相信,为受制裁地区的开发者提供代码协作服务,可以使全球开发者社区变得更强大,促进人类进步,并支持美国 促进言论自由和信息自由流通的一贯外交政策。 有关我们为伊朗开发者获取的许可的信息,请阅读[博客文章](https://github.blog/2021-01-05-advancing-developer-freedom-github-is-fully-available-in-iran)。 +由于我们的积极倡导以及与美国 监管机构的通力合作,GitHub 已获得美国 财政部外国资产控制办公室 (OFAC) 的许可,允许向伊朗的开发者恢复我们的云服务。 我们将继续与美国 监管机构将获得类似的许可证,为叙利亚和克里米亚等其他受制裁地区的开发者提供协作服务。 我们致力于倡导尽可能广泛的开发者访问权限,因为我们相信,为受制裁地区的开发者提供代码协作服务,可以使全球开发者社区变得更强大,促进人类进步,并支持美国 促进言论自由和信息自由流通的一贯外交政策。 有关我们为伊朗开发者获取的许可的信息,请阅读[博客文章](https://github.blog/2021-01-05-advancing-developer-freedom-github-is-fully-available-in-iran)。 虽然我们为了方便您而提供了以下信息,但您要最终负责确保对 GitHub 产品和服务的使用符合所有适用法律和法规,包括美国出口管制法律。 出口管制法律。 @@ -42,13 +42,13 @@ GitHub Enterprise Server 是一种自托管的虚拟设备,可以在客户自 GitHub Enterprise Server 是一种商业性的大宗市场产品,已分配出口管制分类号码 (ECCN)`5D992`,并可能导出到大多数目的地,无需许可证 (NLR)。 -GitHub Enterprise Server may not be sold to, exported, or re-exported to any country listed in Country Group E:1 in Supplement No. 1 to part 740 of the EAR or to the following regions of Ukraine: Crimea and the separatist areas of Donetsk and Luhansk. The countries listed currently include Cuba, Iran, North Korea, Syria, Russia, and Belarus, but this list is subject to change. +GitHub Enterprise Server 不得出售给、出口或再出口到 EAR 第 740 部分补充协议第 1 号补充协议 E:1 中列出的任何国家/地区,也不得再出口到乌克兰的以下地区:克里米亚以及顿涅茨克和卢甘斯克的分离主义地区。 列出的国家目前包括古巴、伊朗、朝鲜、叙利亚、俄罗斯和白俄罗斯,但此列表可能会发生变化。 ## 常见问题 ### 美国政府对哪些国家和地区 实行制裁? -Crimea, the separatist areas of Donetsk and Luhasnk, Cuba, Iran, North Korea, and Syria. 但是,就伊朗而言,GitHub 现在已获得美国 财政部外国资产控制办公室 (OFAC) 的许可,可为位于该国或居住在该国的开发者提供云服务。 GitHub 云服务(包括付费和免费)也向古巴的开发者普遍开放。 +克里米亚、顿涅茨克和卢哈申克的分离主义地区、古巴、伊朗、朝鲜和叙利亚。 但是,就伊朗而言,GitHub 现在已获得美国 财政部外国资产控制办公室 (OFAC) 的许可,可为位于该国或居住在该国的开发者提供云服务。 GitHub 云服务(包括付费和免费)也向古巴的开发者普遍开放。 ### GitHub 如何确保不在受制裁国家及地区生活和/或与受制裁国家及地区有专业联系的民间团体仍然能够访问或上诉? @@ -64,7 +64,7 @@ Crimea, the separatist areas of Donetsk and Luhasnk, Cuba, Iran, North Korea, an GitHub 现在获得了 OFAC 的许可,可以向位于或居住在美国制裁国家——伊朗的开发者提供云服务。 该许可为个人和组织提供的一切免费和有偿的公共和私人服务。 GitHub 云服务(包括付费和免费)也向古巴的开发者普遍开放。 -GitHub is committed to continuing to offer free public repository services to developers with individual and organizational accounts in Syria, Crimea, and the separatist areas of Donetsk and Luhansk. 包括有限制地访问免费服务,例如用于开源项目(和相关公共页面)的公共仓库、公共Gist 以及分配的免费操作分钟数,但只能用于个人通信,而不得用于商业目的。 +GitHub 致力于继续为在叙利亚、克里米亚以及顿涅茨克和卢甘斯克分离主义地区拥有个人和组织帐户的开发者提供免费的公共存储库服务。 包括有限制地访问免费服务,例如用于开源项目(和相关公共页面)的公共仓库、公共Gist 以及分配的免费操作分钟数,但只能用于个人通信,而不得用于商业目的。 对于这些受制裁地区的付费组织级帐户,用户对其公共仓库的访问有限,这些仓库已降级为存档的只读仓库。 但是,对于这些受制裁地区的免费组织级帐户,用户仍然可以完全访问用于开源项目(和相关公共页面)的免费公共仓库、公共 Gist 和分配的免费操作分钟数。 diff --git a/translations/zh-CN/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md b/translations/zh-CN/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md index d898943aa3..fbfe129e96 100644 --- a/translations/zh-CN/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md +++ b/translations/zh-CN/content/sponsors/receiving-sponsorships-through-github-sponsors/viewing-your-sponsors-and-sponsorships.md @@ -50,13 +50,13 @@ shortTitle: 查看赞助者和赞助 ## 查看最近的赞助活动 {% data reusables.sponsors.navigate-to-sponsors-dashboard %} -{% data reusables.sponsors.activity-tab %} +{% data reusables.sponsors.your-sponsors-tab %} ## 导出赞助数据 您可以按月导出赞助事务。 {% data variables.product.company_short %} 将向您发送一封电子邮件,其中包含您所选月份所有赞助者的事务数据。 导出完成后,您可以导出另一个月的数据。 对于您的任何被赞助帐户,您每小时最多可以导出 10 组数据。 {% data reusables.sponsors.navigate-to-sponsors-dashboard %} -{% data reusables.sponsors.activity-tab %} -1. 单击 {% octicon "download" aria-label="The download icon" %} **Export(导出)**。 ![导出按钮](/assets/images/help/sponsors/export-all.png) +{% data reusables.sponsors.your-sponsors-tab %} +1. 在右上角,单击 {% octicon "download" aria-label="The download icon" %} **Export(导出)**。 ![导出按钮](/assets/images/help/sponsors/export-all.png) 1. 选择您想导出的数据的时间范围和格式,然后单击 **Start export(开始导出)**。 ![数据导出选项](/assets/images/help/sponsors/export-your-sponsors.png) diff --git a/translations/zh-CN/data/reusables/audit_log/audit-log-action-categories.md b/translations/zh-CN/data/reusables/audit_log/audit-log-action-categories.md index 6395fd89ad..7b9576bb92 100644 --- a/translations/zh-CN/data/reusables/audit_log/audit-log-action-categories.md +++ b/translations/zh-CN/data/reusables/audit_log/audit-log-action-categories.md @@ -26,7 +26,7 @@ {%- endif %} | `commit_comment` | Contains activities related to updating or deleting commit comments. {%- ifversion ghes %} -| `config_entry` | Contains activities related to configuration settings. These events are only visible in the site admin audit log. +| `config_entry` | Contains activities related to configuration settings. 这些事件仅在站点管理员审核日志中可见。 {%- endif %} {%- ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4864 %} | `dependabot_alerts` | Contains organization-level configuration activities for {% data variables.product.prodname_dependabot_alerts %} in existing repositories. 更多信息请参阅“[关于易受攻击的依赖项的警报](/github/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies)”。 | `dependabot_alerts_new_repos` | Contains organization-level configuration activities for {% data variables.product.prodname_dependabot_alerts %} in new repositories created in the organization. | `dependabot_repository_access` | Contains activities related to which private repositories in an organization {% data variables.product.prodname_dependabot %} is allowed to access. diff --git a/translations/zh-CN/data/reusables/gated-features/org-insights.md b/translations/zh-CN/data/reusables/gated-features/org-insights.md deleted file mode 100644 index 68cb26f13c..0000000000 --- a/translations/zh-CN/data/reusables/gated-features/org-insights.md +++ /dev/null @@ -1 +0,0 @@ -组织洞察可用于 {% data variables.product.prodname_ghe_cloud %}。 更多信息请参阅“[{% data variables.product.prodname_dotcom %} 的产品](/articles/github-s-products)”。 diff --git a/translations/zh-CN/data/reusables/sponsors/activity-tab.md b/translations/zh-CN/data/reusables/sponsors/activity-tab.md deleted file mode 100644 index f0c8d8a652..0000000000 --- a/translations/zh-CN/data/reusables/sponsors/activity-tab.md +++ /dev/null @@ -1 +0,0 @@ -1. 在左侧边栏中,单击 **Activity(活动)**。 ![活动选项卡](/assets/images/help/sponsors/activity-tab.png) diff --git a/translations/zh-CN/data/reusables/sponsors/your-sponsors-tab.md b/translations/zh-CN/data/reusables/sponsors/your-sponsors-tab.md new file mode 100644 index 0000000000..0de0ee7e10 --- /dev/null +++ b/translations/zh-CN/data/reusables/sponsors/your-sponsors-tab.md @@ -0,0 +1 @@ +1. 在左侧边栏中,单击 **Your sponsors(您的赞助者)**。 ![Your sponsors tab](/assets/images/help/sponsors/your-sponsors-tab.png)